feat: 添加批量命令的relation

This commit is contained in:
ibuler
2020-06-04 20:00:39 +08:00
parent 55ae8bb5e6
commit 9c6f118dbd
6 changed files with 70 additions and 12 deletions

View File

@@ -16,6 +16,8 @@ router.register(r'login-logs', api.UserLoginLogViewSet, 'login-log')
router.register(r'operate-logs', api.OperateLogViewSet, 'operate-log')
router.register(r'password-change-logs', api.PasswordChangeLogViewSet, 'password-change-log')
router.register(r'command-execution-logs', api.CommandExecutionViewSet, 'command-execution-log')
router.register(r'command-executions-hosts-relations', api.CommandExecutionHostRelationViewSet, 'command-executions-hosts-relation')
urlpatterns = [
]