feat(bookstack) : add BookStack tab to admin page

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-15 18:15:30 +01:00
parent 5777e8386f
commit c9a3c7c5f8

View File

@@ -28,6 +28,7 @@
<AdminTagTab v-if="activeTab === 'tags'" />
<AdminUserTab v-if="activeTab === 'users'" />
<AdminGiteaTab v-if="activeTab === 'gitea'" />
<AdminBookStackTab v-if="activeTab === 'bookstack'" />
</div>
</div>
</template>
@@ -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']