[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

@ -18,6 +18,7 @@ export class ProjectErrors {
static readonly BadRequestProjectIncomplete = new ClientError(400, "Project incomplete!");
static readonly UnexpectedRootUserError = new ClientError(500, "Error creating root user!");
static readonly ConflictNonUnique = new ClientError(409, "Slug already taken!");
static readonly NotFoundProject = new ClientError(404, "Project not found!");
}
export class KeyPairErrors {