feat(ui) : add Zimbra CalDAV configuration tab in admin page

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Matthieu
2026-03-19 10:33:58 +01:00
parent 1aa72c3b56
commit e00c33d20b
2 changed files with 126 additions and 0 deletions

View File

@@ -29,6 +29,7 @@
<AdminUserTab v-if="activeTab === 'users'" />
<AdminGiteaTab v-if="activeTab === 'gitea'" />
<AdminBookStackTab v-if="activeTab === 'bookstack'" />
<AdminZimbraTab v-if="activeTab === 'zimbra'" />
</div>
</div>
</template>
@@ -46,6 +47,7 @@ const tabs = [
{ key: 'users', label: 'Utilisateurs' },
{ key: 'gitea', label: 'Gitea' },
{ key: 'bookstack', label: 'BookStack' },
{ key: 'zimbra', label: 'Zimbra' },
] as const
type TabKey = typeof tabs[number]['key']