From c9a3c7c5f887cfcb3e57da04f4519b21d883f6c7 Mon Sep 17 00:00:00 2001 From: matthieu Date: Sun, 15 Mar 2026 18:15:30 +0100 Subject: [PATCH] feat(bookstack) : add BookStack tab to admin page Co-Authored-By: Claude Sonnet 4.6 --- frontend/pages/admin.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/pages/admin.vue b/frontend/pages/admin.vue index 90433f4..1b33016 100644 --- a/frontend/pages/admin.vue +++ b/frontend/pages/admin.vue @@ -28,6 +28,7 @@ + @@ -43,6 +44,7 @@ const tabs = [ { key: 'tags', label: 'Tags' }, { key: 'users', label: 'Utilisateurs' }, { key: 'gitea', label: 'Gitea' }, + { key: 'bookstack', label: 'BookStack' }, ] as const type TabKey = typeof tabs[number]['key']