diff --git a/frontend/services/dto/project.ts b/frontend/services/dto/project.ts index e8e7766..21b5de3 100644 --- a/frontend/services/dto/project.ts +++ b/frontend/services/dto/project.ts @@ -8,6 +8,8 @@ export type Project = { description: string | null color: string client: Client | null + giteaOwner: string | null + giteaRepo: string | null } export type ProjectWrite = { @@ -16,4 +18,6 @@ export type ProjectWrite = { description: string | null color: string client: string | null // IRI : "/api/clients/1" ou null + giteaOwner?: string | null + giteaRepo?: string | null }