Files
CyberPanel/ftp/urls.py
Usman Nasir f1f03c7e43 fix imports
2019-12-12 08:46:07 +05: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'),
]