fix: attach domain to project (#640)
Some checks failed
ci/woodpecker/push/ci Pipeline failed

Co-authored-by: Jason Woltje <jason@diversecanvas.com>
Co-committed-by: Jason Woltje <jason@diversecanvas.com>
This commit was merged in pull request #640.
This commit is contained in:
2026-03-01 22:33:49 +00:00
committed by jason.woltje
parent e1e265804a
commit e7da4ca25e
5 changed files with 128 additions and 1 deletions

View File

@@ -95,6 +95,7 @@ export interface CreateProjectDto {
startDate?: string;
endDate?: string;
color?: string;
domainId?: string;
metadata?: Record<string, unknown>;
}
@@ -108,6 +109,7 @@ export interface UpdateProjectDto {
startDate?: string | null;
endDate?: string | null;
color?: string | null;
domainId?: string | null;
metadata?: Record<string, unknown>;
}