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

@@ -7,6 +7,10 @@ import issues from "./issues/all";
import projectCreate from "./project/create";
import projectUpdate from "./project/update";
import projectDelete from "./project/delete";
import projectsByOwner from "./project/by-owner";
import projectsAll from "./project/all";
import projectsWithOwners from "./project/with-owners";
import projectWithOwner from "./project/with-owner";
export const routes = {
issueCreate,
@@ -19,4 +23,8 @@ export const routes = {
projectCreate,
projectUpdate,
projectDelete,
projectsByOwner,
projectsAll,
projectsWithOwners,
projectWithOwner,
};