feat: Phase 1 - Events entity (migration, API, list page, detail layout with module sidebar, overview page)

This commit is contained in:
AlacrisDevs
2026-02-07 10:04:37 +02:00
parent 4f21c89103
commit 556955f349
10 changed files with 1833 additions and 3 deletions

View File

@@ -123,6 +123,11 @@
},
]
: []),
{
href: `/${data.org.slug}/events`,
label: "Events",
icon: "celebration",
},
{
href: `/${data.org.slug}/chat`,
label: "Chat",
@@ -349,9 +354,11 @@
? "files"
: target.includes("/calendar")
? "calendar"
: target.includes("/settings")
? "settings"
: "default"}
: target.includes("/events")
? "default"
: target.includes("/settings")
? "settings"
: "default"}
<PageSkeleton variant={skeletonVariant} />
{:else}
{@render children()}