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,20 +1,19 @@
from django.conf.urls import url
from django.urls import path
from . import views
urlpatterns = [
url(r'^$', views.loadSSLHome, name='loadSSLHome'),
path('', views.loadSSLHome, name='loadSSLHome'),
url(r'^manageSSL', views.manageSSL, name='manageSSL'),
url(r'^issueSSL', views.issueSSL, name='issueSSL'),
path('manageSSL/', views.manageSSL, name='manageSSL'),
path('issueSSL/', views.issueSSL, name='issueSSL'),
url(r'^sslForHostName', views.sslForHostName, name='sslForHostName'),
url(r'^obtainHostNameSSL$', views.obtainHostNameSSL, name='obtainHostNameSSL'),
path('sslForHostName/', views.sslForHostName, name='sslForHostName'),
path('obtainHostNameSSL/', views.obtainHostNameSSL, name='obtainHostNameSSL'),
url(r'^sslForMailServer', views.sslForMailServer, name='sslForMailServer'),
url(r'^obtainMailServerSSL', views.obtainMailServerSSL, name='obtainMailServerSSL'),
path('sslForMailServer/', views.sslForMailServer, name='sslForMailServer'),
path('obtainMailServerSSL/', views.obtainMailServerSSL, name='obtainMailServerSSL'),
## v2 functions
url(r'^v2ManageSSL', views.v2ManageSSL, name='v2ManageSSL'),
url(r'^v2IssueSSL', views.v2IssueSSL, name='v2IssueSSL'),
]
# v2 functions
path('v2ManageSSL/', views.v2ManageSSL, name='v2ManageSSL'),
path('v2IssueSSL/', views.v2IssueSSL, name='v2IssueSSL'),
]