mirror of https://github.com/jumpserver/jumpserver
fix: 修复view action获取
parent
04b35ba520
commit
aa9ae14e46
|
@ -32,7 +32,7 @@ class SimpleMetadataWithFilters(SimpleMetadata):
|
||||||
the fields that are accepted for 'PUT' and 'POST' methods.
|
the fields that are accepted for 'PUT' and 'POST' methods.
|
||||||
"""
|
"""
|
||||||
actions = {}
|
actions = {}
|
||||||
view.raw_action = view.action
|
view.raw_action = getattr(view, 'action', None)
|
||||||
for method in self.methods & set(view.allowed_methods):
|
for method in self.methods & set(view.allowed_methods):
|
||||||
if hasattr(view, 'action_map'):
|
if hasattr(view, 'action_map'):
|
||||||
view.action = view.action_map.get(method.lower(), view.action)
|
view.action = view.action_map.get(method.lower(), view.action)
|
||||||
|
|
Loading…
Reference in New Issue