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.
18 lines
644 B
18 lines
644 B
# ~*~ coding: utf-8 ~*~
|
|
from __future__ import unicode_literals
|
|
|
|
from django.urls import path
|
|
from .. import views
|
|
|
|
__all__ = ["urlpatterns"]
|
|
|
|
app_name = "audits"
|
|
|
|
urlpatterns = [
|
|
path('login-log/', views.LoginLogListView.as_view(), name='login-log-list'),
|
|
path('ftp-log/', views.FTPLogListView.as_view(), name='ftp-log-list'),
|
|
path('operate-log/', views.OperateLogListView.as_view(), name='operate-log-list'),
|
|
path('password-change-log/', views.PasswordChangeLogList.as_view(), name='password-change-log-list'),
|
|
path('command-execution-log/', views.CommandExecutionListView.as_view(), name='command-execution-log-list'),
|
|
]
|