mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-09 06:46:10 +01:00
17 lines
1.1 KiB
Python
17 lines
1.1 KiB
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'),
|
|
url(r'^fetchCurrentBackups$', views.fetchCurrentBackups, name='fetchCurrentBackupsInc'),
|
|
url(r'^submitBackupCreation$', views.submitBackupCreation, name='submitBackupCreationInc'),
|
|
url(r'^getBackupStatus$', views.getBackupStatus, name='getBackupStatusInc'),
|
|
url(r'^deleteBackup$', views.deleteBackup, name='deleteBackupInc'),
|
|
url(r'^fetchRestorePoints$', views.fetchRestorePoints, name='fetchRestorePointsInc'),
|
|
url(r'^restorePoint$', views.restorePoint, name='restorePointInc'),
|
|
url(r'^scheduleBackups$', views.scheduleBackups, name='scheduleBackupsInc'),
|
|
] |