2019-10-01 16:03:07 +05:00
|
|
|
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'),
|
2019-10-02 16:08:31 +05:00
|
|
|
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'),
|
2019-10-04 15:56:53 +05:00
|
|
|
url(r'^fetchRestorePoints$', views.fetchRestorePoints, name='fetchRestorePointsInc'),
|
2019-10-01 16:03:07 +05:00
|
|
|
]
|