local changes

This commit is contained in:
usmannasir
2024-08-04 23:54:32 +05:00
parent f500809452
commit b56838b51c
44 changed files with 1346 additions and 1000 deletions

View File

@@ -1,15 +1,15 @@
from django.conf.urls import url
from django.urls import path
from . 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'),
url(r'^modSecAuditLogs', views.modSecAuditLogs, name='modSecAuditLogs'),
url(r'^getLogsFromFile',views.getLogsFromFile, name="getLogsFromFile"),
url(r'^clearLogFile',views.clearLogFile, name="clearLogFile"),
url(r'^serverMail$', views.serverMail, name="serverMail"),
url(r'^saveSMTPSettings$', views.saveSMTPSettings, name="saveSMTPSettings"),
]
path('', views.logsHome, name='logsHome'),
path('accessLogs/', views.accessLogs, name='accessLogs'),
path('errorLogs/', views.errorLogs, name='errorLogs'),
path('emaillogs/', views.emailLogs, name='emaillogs'),
path('ftplogs/', views.ftplogs, name='ftplogs'),
path('modSecAuditLogs/', views.modSecAuditLogs, name='modSecAuditLogs'),
path('getLogsFromFile/', views.getLogsFromFile, name='getLogsFromFile'),
path('clearLogFile/', views.clearLogFile, name='clearLogFile'),
path('serverMail/', views.serverMail, name='serverMail'),
path('saveSMTPSettings/', views.saveSMTPSettings, name='saveSMTPSettings'),
]