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
c7ecfd79
Commit
c7ecfd79
authored
Oct 29, 2019
by
BaiJiangJie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Bugfix] 修复当终端设置包含多个命令存储时,访问 /docs/ 页面错误的问题
parent
db5ff0f9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
user_remote_app_permission.py
apps/perms/api/user_remote_app_permission.py
+2
-0
command.py
apps/terminal/api/command.py
+3
-0
No files found.
apps/perms/api/user_remote_app_permission.py
View file @
c7ecfd79
...
...
@@ -53,6 +53,8 @@ class UserGrantedRemoteAppsAsTreeApi(UserGrantedRemoteAppsApi):
permission_classes
=
(
IsOrgAdminOrAppUser
,)
def
get_serializer
(
self
,
remote_apps
=
None
,
*
args
,
**
kwargs
):
if
remote_apps
is
None
:
remote_apps
=
[]
only_remote_app
=
self
.
request
.
query_params
.
get
(
'only'
,
'0'
)
==
'1'
tree_root
=
None
data
=
[]
...
...
apps/terminal/api/command.py
View file @
c7ecfd79
...
...
@@ -29,6 +29,9 @@ class CommandQueryMixin:
default_days_ago
=
5
def
get_queryset
(
self
):
# 解决访问 /docs/ 问题
if
hasattr
(
self
,
'swagger_fake_view'
):
return
self
.
command_store
.
model
.
objects
.
none
()
date_from
,
date_to
=
self
.
get_date_range
()
q
=
self
.
request
.
query_params
multi_command_storage
=
get_multi_command_storage
()
...
...
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