mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-09-21 19:38:07 +00:00
[Update] 更新index view
This commit is contained in:
@@ -1,18 +0,0 @@
|
||||
from django.conf.urls import url
|
||||
from rest_framework import routers
|
||||
|
||||
from .. import api
|
||||
|
||||
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/replay-log', api.RecordLogViewSet, 'replay-log')
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^v1/proxy-log/receive/$', api.ProxyLogReceiveView.as_view(),
|
||||
name='proxy-log-receive'),
|
||||
]
|
||||
|
||||
urlpatterns += router.urls
|
Reference in New Issue
Block a user