feat : add gitea fields to Project DTO

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Matthieu
2026-03-13 14:00:35 +01:00
parent e278286146
commit 2073339d4f

View File

@@ -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
}