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
58288975
Unverified
Commit
58288975
authored
Sep 16, 2019
by
BaiJiangJie
Committed by
GitHub
Sep 16, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3227 from jumpserver/dev_users
[Update] API允许批量删除用户,修改前端提示信息逻辑
parents
b3e20b8b
f4c080dd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
10 deletions
+15
-10
user.py
apps/users/api/user.py
+4
-2
user_list.html
apps/users/templates/users/user_list.html
+11
-8
No files found.
apps/users/api/user.py
View file @
58288975
...
...
@@ -60,8 +60,10 @@ class UserViewSet(IDInCacheFilterMixin, BulkModelViewSet):
self
.
permission_classes
=
(
IsOrgAdminOrAppUser
,)
return
super
()
.
get_permissions
()
def
allow_bulk_destroy
(
self
,
qs
,
filtered
):
return
False
def
perform_bulk_destroy
(
self
,
objects
):
for
obj
in
objects
:
self
.
check_object_permissions
(
self
.
request
,
obj
)
self
.
perform_destroy
(
obj
)
def
perform_bulk_update
(
self
,
serializer
):
# TODO: 需要测试
...
...
apps/users/templates/users/user_list.html
View file @
58288975
...
...
@@ -258,25 +258,28 @@ $(document).ready(function(){
},
function
()
{
function
success
(
data
)
{
url
=
setUrlParam
(
the_url
,
'spm'
,
data
.
spm
);
function
success
()
{
var
msg
=
"{% trans 'User Deleted.' %}"
;
swal
(
"{% trans 'User Delete' %}"
,
msg
,
"success"
);
}
function
fail
()
{
var
msg
=
"{% trans 'User Deleting failed.' %}"
;
swal
(
"{% trans 'User Delete' %}"
,
msg
,
"error"
);
}
requestApi
({
url
:
url
,
method
:
'DELETE'
,
flash_message
:
true
,
success
:
reloadPage
,
flash_message
:
false
,
error
:
fail
});
var
msg
=
"{% trans 'User Deleted.' %}"
;
swal
(
"{% trans 'User Delete' %}"
,
msg
,
"success"
);
}
function
fail
()
{
var
msg
=
"{% trans 'User Deleting failed.' %}"
;
swal
(
"{% trans 'User Delete' %}"
,
msg
,
"error"
);
}
requestApi
({
url
:
"{% url 'api-common:resources-cache' %}"
,
method
:
'POST'
,
body
:
JSON
.
stringify
(
data
),
flash_message
:
false
,
success
:
success
,
error
:
fail
})
})
}
...
...
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