mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-06 13:25:51 +01:00
11 lines
494 B
Python
11 lines
494 B
Python
|
|
from django.conf.urls import url
|
||
|
|
import views
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
url(r'^createBackup$', views.createBackup, name='createBackupInc'),
|
||
|
|
url(r'^backupDestinations$', views.backupDestinations, name='backupDestinationsInc'),
|
||
|
|
url(r'^addDestination$', views.addDestination, name='addDestinationInc'),
|
||
|
|
url(r'^populateCurrentRecords$', views.populateCurrentRecords, name='populateCurrentRecordsInc'),
|
||
|
|
url(r'^removeDestination$', views.removeDestination, name='removeDestinationInc'),
|
||
|
|
|
||
|
|
]
|