[FEATURE] New Project Display

This commit is contained in:
Dunemask 2024-09-02 20:36:06 -06:00
parent c50c4ef647
commit 9204c1d332
18 changed files with 247 additions and 45 deletions

View file

@ -31,4 +31,8 @@ export default class ProjectTableService extends TableService {
throw ProjectErrors.ConflictNonUnique;
});
}
async listChildren(parentProjectId: string) {
return this.pg.project.findMany({ where: { parentProject: parentProjectId } });
}
}