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
bde92b20
Commit
bde92b20
authored
Aug 12, 2019
by
jym503558564
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改小问题
parent
2391ce2d
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
views.py
apps/audits/views.py
+1
-1
asset_permission.py
apps/perms/forms/asset_permission.py
+1
-1
remote_app_permission.py
apps/perms/forms/remote_app_permission.py
+1
-1
asset_permission.py
apps/perms/views/asset_permission.py
+1
-1
remote_app_permission.py
apps/perms/views/remote_app_permission.py
+1
-1
group.py
apps/users/views/group.py
+1
-1
No files found.
apps/audits/views.py
View file @
bde92b20
...
...
@@ -234,7 +234,7 @@ class CommandExecutionListView(UserCommandExecutionListView):
return
queryset
def
get_user_list
(
self
):
users
=
current_org
.
get_org_members_exclude_a
n
ditors
()
users
=
current_org
.
get_org_members_exclude_a
u
ditors
()
return
users
def
get_context_data
(
self
,
**
kwargs
):
...
...
apps/perms/forms/asset_permission.py
View file @
bde92b20
...
...
@@ -39,7 +39,7 @@ class AssetPermissionForm(OrgModelForm):
def
__init__
(
self
,
*
args
,
**
kwargs
):
super
()
.
__init__
(
*
args
,
**
kwargs
)
users_field
=
self
.
fields
.
get
(
'users'
)
users_field
.
queryset
=
current_org
.
get_org_members_exclude_a
n
ditors
()
users_field
.
queryset
=
current_org
.
get_org_members_exclude_a
u
ditors
()
nodes_field
=
self
.
fields
[
'nodes'
]
nodes_field
.
choices
=
((
n
.
id
,
n
.
full_value
)
for
n
in
Node
.
get_queryset
())
...
...
apps/perms/forms/remote_app_permission.py
View file @
bde92b20
...
...
@@ -19,7 +19,7 @@ class RemoteAppPermissionCreateUpdateForm(OrgModelForm):
super
()
.
__init__
(
*
args
,
**
kwargs
)
users_field
=
self
.
fields
.
get
(
'users'
)
if
hasattr
(
users_field
,
'queryset'
):
users_field
.
queryset
=
current_org
.
get_org_members_exclude_a
n
ditors
()
users_field
.
queryset
=
current_org
.
get_org_members_exclude_a
u
ditors
()
class
Meta
:
model
=
RemoteAppPermission
...
...
apps/perms/views/asset_permission.py
View file @
bde92b20
...
...
@@ -135,7 +135,7 @@ class AssetPermissionUserView(PermissionsMixin,
context
=
{
'app'
:
_
(
'Perms'
),
'action'
:
_
(
'Asset permission user list'
),
'users_remain'
:
current_org
.
get_org_members_exclude_a
n
ditors
()
.
exclude
(
'users_remain'
:
current_org
.
get_org_members_exclude_a
u
ditors
()
.
exclude
(
assetpermission
=
self
.
object
),
'user_groups_remain'
:
UserGroup
.
objects
.
exclude
(
...
...
apps/perms/views/remote_app_permission.py
View file @
bde92b20
...
...
@@ -107,7 +107,7 @@ class RemoteAppPermissionUserView(PermissionsMixin,
context
=
{
'app'
:
_
(
'Perms'
),
'action'
:
_
(
'RemoteApp permission user list'
),
'users_remain'
:
current_org
.
get_org_members_exclude_a
n
ditors
()
.
exclude
(
'users_remain'
:
current_org
.
get_org_members_exclude_a
u
ditors
()
.
exclude
(
remoteapppermission
=
self
.
object
),
'user_groups_remain'
:
UserGroup
.
objects
.
exclude
(
...
...
apps/users/views/group.py
View file @
bde92b20
...
...
@@ -76,7 +76,7 @@ class UserGroupDetailView(PermissionsMixin, DetailView):
permission_classes
=
[
IsOrgAdmin
]
def
get_context_data
(
self
,
**
kwargs
):
users
=
current_org
.
get_org_members_exclude_a
n
ditors
()
.
exclude
(
id__in
=
self
.
object
.
users
.
all
())
users
=
current_org
.
get_org_members_exclude_a
u
ditors
()
.
exclude
(
id__in
=
self
.
object
.
users
.
all
())
context
=
{
'app'
:
_
(
'Users'
),
'action'
:
_
(
'User group detail'
),
...
...
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