cleaned up unused jobs implementation

This commit is contained in:
azivner
2018-03-04 21:33:06 -05:00
parent ddce5c959e
commit 07bf075894
3 changed files with 0 additions and 60 deletions

View File

@@ -16,12 +16,6 @@ router.post('/exec', auth.checkApiAuth, wrap(async (req, res, next) => {
});
}));
router.post('/job', auth.checkApiAuth, wrap(async (req, res, next) => {
await script.setJob(req.body);
res.send({});
}));
router.get('/startup', auth.checkApiAuth, wrap(async (req, res, next) => {
const repository = new Repository(req);
const notes = await attributes.getNotesWithAttribute(repository, "run", "frontend_startup");