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
bfd88167
Commit
bfd88167
authored
Jul 26, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改swagger
parent
e592a89c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
1 deletion
+20
-1
swagger.py
apps/jumpserver/swagger.py
+19
-0
urls.py
apps/jumpserver/urls.py
+1
-1
No files found.
apps/jumpserver/swagger.py
View file @
bfd88167
...
...
@@ -11,6 +11,25 @@ class CustomSwaggerAutoSchema(SwaggerAutoSchema):
return
[
operation_keys
[
0
]
+
'_'
+
operation_keys
[
1
]]
return
super
()
.
get_tags
(
operation_keys
)
def
get_operation_id
(
self
,
operation_keys
):
action
=
''
dump_keys
=
[
k
for
k
in
operation_keys
]
if
hasattr
(
self
.
view
,
'action'
):
action
=
self
.
view
.
action
if
action
==
"bulk_destroy"
:
action
=
"bulk_delete"
if
dump_keys
[
-
2
]
==
"children"
:
if
self
.
path
.
find
(
'id'
)
<
0
:
dump_keys
.
insert
(
-
2
,
"root"
)
if
dump_keys
[
0
]
==
"perms"
and
dump_keys
[
1
]
==
"users"
:
if
self
.
path
.
find
(
'{id}'
)
<
0
:
dump_keys
.
insert
(
2
,
"my"
)
print
(
self
.
path
)
print
(
dump_keys
)
if
action
.
replace
(
'bulk_'
,
''
)
==
dump_keys
[
-
1
]:
dump_keys
[
-
1
]
=
action
return
super
()
.
get_operation_id
(
tuple
(
dump_keys
))
def
get_operation
(
self
,
operation_keys
):
operation
=
super
()
.
get_operation
(
operation_keys
)
operation
.
summary
=
operation
.
operation_id
...
...
apps/jumpserver/urls.py
View file @
bfd88167
...
...
@@ -48,7 +48,7 @@ if settings.XPACK_ENABLED:
path
(
'xpack/'
,
include
(
'xpack.urls.view_urls'
,
namespace
=
'xpack'
))
)
api_v1
.
append
(
path
(
'xpack/
v1/
'
,
include
(
'xpack.urls.api_urls'
,
namespace
=
'api-xpack'
))
path
(
'xpack/'
,
include
(
'xpack.urls.api_urls'
,
namespace
=
'api-xpack'
))
)
js_i18n_patterns
=
i18n_patterns
(
...
...
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