mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
458 B
24 lines
458 B
# ~*~ coding: utf-8 ~*~
|
|
from __future__ import unicode_literals
|
|
|
|
from django.urls.conf import re_path
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
from common import api as capi
|
|
from .. import api
|
|
|
|
|
|
app_name = "audits"
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'ftp-logs', api.FTPLogViewSet, 'ftp-log')
|
|
|
|
urlpatterns = [
|
|
]
|
|
|
|
old_version_urlpatterns = [
|
|
re_path('(?P<resource>ftp-log)/.*', capi.redirect_plural_name_api)
|
|
]
|
|
|
|
urlpatterns += router.urls
|