basic member pagination
This commit is contained in:
parent
6f13cdc297
commit
c1a6c0040d
12 changed files with 302 additions and 5 deletions
|
@ -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" }] : []),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue