mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-03 11:55:57 +01:00
21 lines
750 B
Python
21 lines
750 B
Python
|
|
from django.conf.urls import url
|
||
|
|
import views
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
url(r'^$', views.loadFTPHome, name='loadFTPHome'),
|
||
|
|
url(r'^createFTPAccount', views.createFTPAccount, name='createFTPAccount'),
|
||
|
|
url(r'^submitFTPCreation', views.submitFTPCreation, name='ftpHome'),
|
||
|
|
|
||
|
|
url(r'^deleteFTPAccount', views.deleteFTPAccount, name='deleteFTPAccount'),
|
||
|
|
|
||
|
|
url(r'^fetchFTPAccounts', views.fetchFTPAccounts, name='fetchFTPAccounts'),
|
||
|
|
url(r'^submitFTPDelete', views.submitFTPDelete, name='submitFTPDelete'),
|
||
|
|
|
||
|
|
url(r'^listFTPAccounts', views.listFTPAccounts, name='listFTPAccounts'),
|
||
|
|
|
||
|
|
url(r'^getAllFTPAccounts', views.getAllFTPAccounts, name='getAllFTPAccounts'),
|
||
|
|
|
||
|
|
url(r'^changePassword', views.changePassword, name='changePassword'),
|
||
|
|
]
|
||
|
|
|