sprint routes

This commit is contained in:
Oliver Bryan
2026-01-12 01:05:53 +00:00
parent 5e8a2eeff8
commit 3cef3d3827
4 changed files with 102 additions and 0 deletions

View File

@@ -69,6 +69,9 @@ const main = async () => {
"/projects/all": withCors(withAuth(routes.projectsAll)),
"/projects/with-creators": withCors(withAuth(routes.projectsWithCreators)),
"/sprint/create": withCors(withAuth(withCSRF(routes.sprintCreate))),
"/sprints/by-project": withCors(withAuth(routes.sprintsByProject)),
"/timer/toggle": withCors(withAuth(withCSRF(routes.timerToggle))),
"/timer/end": withCors(withAuth(withCSRF(routes.timerEnd))),
"/timer/get": withCors(withAuth(withCSRF(routes.timerGet))),