Files
CyberPanel/ftp/urls.py
2019-06-08 21:41:43 +00:00

21 lines
750 B
Python
Executable File

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'),
]