feat(frontend) : add isFinal and archived fields to DTOs

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Matthieu
2026-03-12 17:59:45 +01:00
parent 96a9f988c4
commit 91ffb82e44
3 changed files with 10 additions and 3 deletions

View File

@@ -7,6 +7,7 @@ export type TaskGroup = {
description: string | null
color: string
project: Project | null
archived: boolean
}
export type TaskGroupWrite = {
@@ -14,4 +15,5 @@ export type TaskGroupWrite = {
description: string | null
color: string
project: string
archived?: boolean
}