backup read, upload and restore

This commit is contained in:
Julian Krauser 2025-02-02 16:37:46 +01:00
parent e5cb8fecc6
commit f8fb222ebb
13 changed files with 555 additions and 8 deletions

View file

@ -133,6 +133,7 @@ export const useNavigationStore = defineStore("navigation", {
...(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" }] : []),
...(abilityStore.can("read", "user", "backup") ? [{ key: "backup", title: "Backups" }] : []),
],
},
} as navigationModel;