2015-06-11 19:21:59 +00:00
|
|
|
exports.routes = {
|
|
|
|
"root" : "/",
|
2015-06-12 10:17:26 +00:00
|
|
|
"save" : "/save",
|
2015-06-12 19:19:46 +00:00
|
|
|
"crontab" : "/crontab",
|
|
|
|
"stop" : "/stop",
|
|
|
|
"start" : "/start",
|
|
|
|
"remove": "/remove",
|
|
|
|
"backup": "/backup",
|
2015-06-13 02:53:13 +00:00
|
|
|
"restore": "/restore",
|
|
|
|
"delete_backup": "/delete",
|
2015-06-13 20:38:20 +00:00
|
|
|
"restore_backup": "/restore_backup",
|
|
|
|
"export": "/export",
|
|
|
|
"import": "/import", // this is import from database
|
|
|
|
"import_crontab": "/import_crontab", // this is from existing crontab
|
2015-12-16 10:04:44 +00:00
|
|
|
"logger": "/logger",
|
2016-09-01 18:10:11 +00:00
|
|
|
};
|