mirror of https://github.com/jumpserver/jumpserver
fix: 修复命令告警的问题
parent
6338ecc6fe
commit
ea5a54f9c7
|
@ -83,7 +83,7 @@ class CommandWarningMessage(CommandAlertMixin, UserMessage):
|
||||||
user_id = command.get('_user_id', '')
|
user_id = command.get('_user_id', '')
|
||||||
asset = command['asset']
|
asset = command['asset']
|
||||||
asset_id = command.get('_asset_id', '')
|
asset_id = command.get('_asset_id', '')
|
||||||
account = command['_account']
|
account = command.get('_account', '')
|
||||||
account_id = command.get('_account_id', '')
|
account_id = command.get('_account_id', '')
|
||||||
cmd_acl = command.get('_cmd_filter_acl')
|
cmd_acl = command.get('_cmd_filter_acl')
|
||||||
cmd_group = command.get('_cmd_group')
|
cmd_group = command.get('_cmd_group')
|
||||||
|
|
Loading…
Reference in New Issue