Resolve broken routes.

This commit is contained in:
Patrick Fic
2024-01-29 12:56:14 -08:00
parent 62dac2193f
commit 39bba3623a

View File

@@ -8,8 +8,8 @@ router.use(validateFirebaseIdTokenMiddleware);
router.use(withUserGraphQLClientMiddleware);
router.post("/calculatelabor", payroll.calculatelabor);
router.post("payall", payroll.payall);
router.post("claimtask", payroll.claimtask);
router.post("/payall", payroll.payall);
router.post("/claimtask", payroll.claimtask);
module.exports = router;