refactor(frontend) : remove project from TaskStatus DTO and service

This commit is contained in:
Matthieu
2026-03-12 11:49:56 +01:00
parent 16c9b845a6
commit cbe3408b72
2 changed files with 1 additions and 12 deletions

View File

@@ -1,17 +1,13 @@
import type { Project } from './project'
export type TaskStatus = {
id: number
'@id'?: string
label: string
color: string
position: number
project: Project | null
}
export type TaskStatusWrite = {
label: string
color: string
position: number
project: string
}