2017-10-24 19:16:36 +05:00
|
|
|
from django.conf.urls import url
|
|
|
|
|
import views
|
|
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
|
url(r'^$', views.logsHome, name='logsHome'),
|
|
|
|
|
url(r'^accessLogs', views.accessLogs, name='accessLogs'),
|
|
|
|
|
url(r'^errorLogs', views.errorLogs, name='errorLogs'),
|
|
|
|
|
url(r'^emaillogs', views.emailLogs, name='emaillogs'),
|
|
|
|
|
url(r'^ftplogs', views.ftplogs, name='ftplogs'),
|
2018-03-23 23:05:55 +05:00
|
|
|
url(r'^modSecAuditLogs', views.modSecAuditLogs, name='modSecAuditLogs'),
|
2017-10-24 19:16:36 +05:00
|
|
|
url(r'^getLogsFromFile',views.getLogsFromFile, name="getLogsFromFile"),
|
2018-03-23 23:05:55 +05:00
|
|
|
url(r'^clearLogFile',views.clearLogFile, name="clearLogFile"),
|
2017-10-24 19:16:36 +05:00
|
|
|
|
|
|
|
|
]
|