Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
8ef70755
Commit
8ef70755
authored
Aug 09, 2019
by
jym503558564
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 创建/更新 审计员禁止加入组
parent
0a181c76
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
v1.py
apps/users/serializers/v1.py
+17
-0
No files found.
apps/users/serializers/v1.py
View file @
8ef70755
...
...
@@ -75,12 +75,29 @@ class UserSerializer(BulkSerializerMixin, serializers.ModelSerializer):
validated_data
[
'password_raw'
]
=
password
return
validated_data
@staticmethod
def
create_auditor_role_clean_groups
(
validated_data
):
role
=
validated_data
.
get
(
'role'
,
None
)
if
role
==
'Auditor'
:
validated_data
.
pop
(
'groups'
,
None
)
return
validated_data
@staticmethod
def
update_auditor_role_clean_groups
(
instance
,
validated_data
):
role
=
validated_data
.
get
(
'role'
,
None
)
if
(
role
and
role
==
'Auditor'
)
or
(
not
role
and
instance
.
role
==
'Auditor'
):
validated_data
.
pop
(
'groups'
,
None
)
instance
.
groups
.
set
([])
return
instance
,
validated_data
def
create
(
self
,
validated_data
):
validated_data
=
self
.
change_password_to_raw
(
validated_data
)
validated_data
=
self
.
create_auditor_role_clean_groups
(
validated_data
)
return
super
()
.
create
(
validated_data
)
def
update
(
self
,
instance
,
validated_data
):
validated_data
=
self
.
change_password_to_raw
(
validated_data
)
instance
,
validated_data
=
self
.
update_auditor_role_clean_groups
(
instance
,
validated_data
)
return
super
()
.
update
(
instance
,
validated_data
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment