Files
CyberPanel/ftp/urls.py

21 lines
750 B
Python
Raw Normal View History

2017-10-24 19:16:36 +05:00
from django.conf.urls import url
2019-12-12 08:46:07 +05:00
import views
2017-10-24 19:16:36 +05:00
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'),
]