CRUD base types

This commit is contained in:
Julian Krauser 2024-09-09 13:13:45 +02:00
parent 3cdc64674b
commit 0dd5ad09a8
43 changed files with 2457 additions and 26 deletions

View file

@ -103,7 +103,10 @@ export const useNavigationStore = defineStore("navigation", {
? [{ key: "executive_position", title: "Vereinsämter" }]
: []),
...(abilityStore.can("read", "settings", "communication")
? [{ key: "communication", title: "Mitgliederdaten" }]
? [{ key: "communication", title: "Kommunikationsarten" }]
: []),
...(abilityStore.can("read", "settings", "membership_status")
? [{ key: "membership_status", title: "Mitgliedsstatus" }]
: []),
],
},