[feature] 添加 login-logs API

This commit is contained in:
xuxinwen
2020-04-29 19:05:56 +08:00
committed by xinwen
parent 1b1a686b96
commit f4eca83a49
5 changed files with 81 additions and 12 deletions

View File

@@ -12,6 +12,7 @@ app_name = "audits"
router = DefaultRouter()
router.register(r'ftp-logs', api.FTPLogViewSet, 'ftp-log')
router.register(r'login-logs', api.UserLoginLogViewSet, 'login-log')
urlpatterns = [
]