feat(bookstack) : add shelf select to ProjectDrawer

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-15 18:15:34 +01:00
parent c9a3c7c5f8
commit f53b2f3d1f
2 changed files with 40 additions and 0 deletions

View File

@@ -10,6 +10,8 @@ export type Project = {
client: Client | null
giteaOwner: string | null
giteaRepo: string | null
bookstackShelfId: number | null
bookstackShelfName: string | null
archived: boolean
}
@@ -21,5 +23,7 @@ export type ProjectWrite = {
client: string | null // IRI : "/api/clients/1" ou null
giteaOwner?: string | null
giteaRepo?: string | null
bookstackShelfId?: number | null
bookstackShelfName?: string | null
archived?: boolean
}