feat(UI-Overhaul-Phase6): Tags Umstrukturierung
Check Cross-Plugin Imports / check (push) Has been cancelled

Migration 0138: Add parent_id, applicable_to, icon columns to tags table

Backend:
- Tag model: add parent_id (self-FK), applicable_to (JSONB), icon (VARCHAR)
- TagCreate/TagUpdate/TagResponse schemas: add new fields
- Tags routes: create_tag, update_tag, list_tags return new fields

Frontend:
- api/tags.ts: Tag interface, CreateTagPayload, UpdateTagPayload updated with new fields
- Tags route moved from /tags to /settings/tags (under Settings)
- Tags.tsx: TagFormModal updated with parent tag selector, icon picker, applicable_to multi-select
- TagsPage passes tags list to TagFormModal for parent selection

tsc clean, backend import OK
This commit is contained in:
Agent Zero
2026-08-21 13:43:29 +02:00
parent 9f89cb17a0
commit b59289fc6e
7 changed files with 188 additions and 5 deletions
+9
View File
@@ -20,6 +20,9 @@ export interface Tag {
created_at?: string | null;
updated_at?: string | null;
usage_count?: number;
parent_id?: string | null;
applicable_to?: string[] | null;
icon?: string | null;
}
export interface TagAssignment {
@@ -43,12 +46,18 @@ export interface CreateTagPayload {
name: string;
color?: string;
description?: string | null;
parent_id?: string | null;
applicable_to?: string[] | null;
icon?: string | null;
}
export interface UpdateTagPayload {
name?: string;
color?: string;
description?: string | null;
parent_id?: string | null;
applicable_to?: string[] | null;
icon?: string | null;
}
export interface AssignTagPayload {