mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-09-28 08:06:27 +00:00
fix: 修复用户绑定角色重大bug
This commit is contained in:
@@ -237,16 +237,16 @@ class RoleManager(models.Manager):
|
||||
|
||||
class OrgRoleManager(RoleManager):
|
||||
def __init__(self, *args, **kwargs):
|
||||
super().__init__(*args, **kwargs)
|
||||
from rbac.const import Scope
|
||||
self.scope = Scope.org
|
||||
super().__init__(*args, **kwargs)
|
||||
|
||||
|
||||
class SystemRoleManager(RoleManager):
|
||||
def __init__(self, *args, **kwargs):
|
||||
super().__init__(*args, **kwargs)
|
||||
from rbac.const import Scope
|
||||
self.scope = Scope.system
|
||||
super().__init__(*args, **kwargs)
|
||||
|
||||
|
||||
class RoleMixin:
|
||||
|
@@ -49,6 +49,8 @@ class RolesSerializerMixin(serializers.Serializer):
|
||||
return fields
|
||||
|
||||
action = view.action or 'list'
|
||||
if action in ('partial_bulk_update', 'bulk_update', 'partial_update', 'update'):
|
||||
action = 'create'
|
||||
model_cls_field_mapper = {
|
||||
SystemRoleBinding: ['system_roles', 'system_roles_display'],
|
||||
OrgRoleBinding: ['org_roles', 'system_roles_display']
|
||||
|
Reference in New Issue
Block a user