mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-11-15 00:12:20 -05:00
feat: Additional Household Permissions (#4158)
Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
This commit is contained in:
11
frontend/middleware/can-manage-household-only.ts
Normal file
11
frontend/middleware/can-manage-household-only.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
interface CanManageRedirectParams {
|
||||
$auth: any
|
||||
redirect: (path: string) => void
|
||||
}
|
||||
export default function ({ $auth, redirect }: CanManageRedirectParams) {
|
||||
// If the user is not allowed to manage group settings redirect to the home page
|
||||
if (!$auth.user?.canManageHousehold) {
|
||||
console.warn("User is not allowed to manage household settings");
|
||||
return redirect("/");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user