1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-24 15:49:42 +02:00

add can manage restriction

This commit is contained in:
Kuchenpirat 2024-02-02 15:14:48 +00:00
parent e7f5a4adff
commit 4cee8ea879
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,12 @@
interface CanManageRedirectParams {
$auth: any
redirect: (path: string) => void
}
export default function ({ $auth, redirect }: CanManageRedirectParams) {
// If the user is not allowed to organize redirect to the home page
console.log($auth.user)
if (!$auth.user.canManage) {
console.warn("User is not allowed to manage group settings");
return redirect("/")
}
}