From 2073339d4f725a527c89f4117d43c08e9796bf37 Mon Sep 17 00:00:00 2001 From: Matthieu Date: Fri, 13 Mar 2026 14:00:35 +0100 Subject: [PATCH] feat : add gitea fields to Project DTO Co-Authored-By: Claude Opus 4.6 --- frontend/services/dto/project.ts | 4 ++++ 1 file changed, 4 insertions(+) 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 }