16 lines
402 B
JavaScript
16 lines
402 B
JavaScript
exports.routes = {
|
|
"root" : "/",
|
|
"save" : "/save",
|
|
"crontab" : "/crontab",
|
|
"stop" : "/stop",
|
|
"start" : "/start",
|
|
"remove": "/remove",
|
|
"backup": "/backup",
|
|
"restore": "/restore",
|
|
"delete_backup": "/delete",
|
|
"restore_backup": "/restore_backup",
|
|
"export": "/export",
|
|
"import": "/import", // this is import from database
|
|
"import_crontab": "/import_crontab", // this is from existing crontab
|
|
}
|