basic structure for webapi

This commit is contained in:
Julian Krauser 2025-01-22 10:17:11 +01:00
parent ee42625d66
commit 7ded4a21bb
12 changed files with 554 additions and 62 deletions

View file

@ -131,6 +131,7 @@ export const useNavigationStore = defineStore("navigation", {
main: [
...(abilityStore.can("read", "user", "user") ? [{ key: "user", title: "Benutzer" }] : []),
...(abilityStore.can("read", "user", "role") ? [{ key: "role", title: "Rollen" }] : []),
...(abilityStore.can("read", "user", "webapi") ? [{ key: "webapi", title: "Webapi-Token" }] : []),
],
},
} as navigationModel;