[Fixture] 添加record log

This commit is contained in:
ibuler
2017-02-07 21:51:44 +08:00
parent a79c3dd156
commit 9c7bd7d285
12 changed files with 124 additions and 17 deletions

View File

@@ -8,6 +8,7 @@ app_name = 'audits'
router = routers.DefaultRouter()
router.register(r'v1/proxy-log', api.ProxyLogViewSet, 'proxy-log')
router.register(r'v1/command-log', api.CommandLogViewSet, 'command-log')
router.register(r'v1/record-log', api.RecordLogViewSet, 'record-log')
urlpatterns = [
url(r'^v1/proxy-log/receive/$', api.ProxyLogReceiveView.as_view(),