mirror of https://github.com/jumpserver/jumpserver
fix: 修复用户绑定角色重大bug
parent
d01d44b48d
commit
2ec0cb8a2c
|
@ -299,16 +299,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']
|
||||
|
|
Loading…
Reference in New Issue