feat(web): conversation management — search, rename, delete, archive (#121) (#139)
ci/woodpecker/push/ci Pipeline was successful

Co-authored-by: Jason Woltje <[email protected]>
Co-committed-by: Jason Woltje <[email protected]>
This commit was merged in pull request #139.
This commit is contained in:
2026-03-15 18:20:15 +00:00
committed by jason.woltje
parent 07647c8382
commit d42cd68ea4
7 changed files with 2228 additions and 25 deletions
+1
View File
@@ -4,6 +4,7 @@ export interface Conversation {
userId: string;
title: string | null;
projectId: string | null;
archived: boolean;
createdAt: string;
updatedAt: string;
}