more project routes

This commit is contained in:
Oliver Bryan
2025-12-13 21:55:09 +00:00
parent 789b8ed409
commit 168bd8831c
6 changed files with 80 additions and 0 deletions

View File

@@ -89,6 +89,10 @@ const main = async () => {
"/project/create": withCors(routes.projectCreate),
"/project/update": withCors(routes.projectUpdate),
"/project/delete": withCors(routes.projectDelete),
"/projects/by-owner": withCors(routes.projectsByOwner),
"/projects/all": withCors(routes.projectsAll),
"/projects/with-owners": withCors(routes.projectsWithOwners),
"/project/with-owner": withCors(routes.projectWithOwner),
},
});