basic member pagination

This commit is contained in:
Julian Krauser 2024-09-16 19:03:52 +02:00
parent 6f13cdc297
commit c1a6c0040d
12 changed files with 302 additions and 5 deletions

View file

@ -54,7 +54,7 @@ export const useNavigationStore = defineStore("navigation", {
{
key: "club",
title: "Verein",
levelDefault: "members",
levelDefault: "member",
} as topLevelNavigationModel,
]
: []),
@ -86,7 +86,7 @@ export const useNavigationStore = defineStore("navigation", {
club: {
mainTitle: "Verein",
main: [
...(abilityStore.can("read", "club", "members") ? [{ key: "members", title: "Mitglieder" }] : []),
...(abilityStore.can("read", "club", "member") ? [{ key: "member", title: "Mitglieder" }] : []),
...(abilityStore.can("read", "club", "calendar") ? [{ key: "calendar", title: "Termine" }] : []),
...(abilityStore.can("read", "club", "newsletter") ? [{ key: "newsletter", title: "Newsletter" }] : []),
...(abilityStore.can("read", "club", "protocoll") ? [{ key: "protocol", title: "Protokolle" }] : []),