feat(frontend) : add TaskDocument DTO, service and i18n translations

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-15 18:07:00 +01:00
parent 52063cb4fa
commit e53862d71f
4 changed files with 68 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ import type { TaskTag } from './task-tag'
import type { TaskGroup } from './task-group'
import type { UserData } from './user-data'
import type { Project } from './project'
import type { TaskDocument } from './task-document'
export type Task = {
id: number
@@ -19,6 +20,7 @@ export type Task = {
group: TaskGroup | null
project: Project | null
tags: TaskTag[]
documents: TaskDocument[]
archived: boolean
}