1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-21 14:19:41 +02:00
mealie/frontend/middleware/can-organize-only.ts

9 lines
281 B
TypeScript
Raw Normal View History

export default defineNuxtRouteMiddleware(() => {
const { user } = useMealieAuth();
// If the user is not allowed to organize data redirect to the home page
if (!user.value?.canOrganize) {
console.warn("User is not allowed to organize data");
navigateTo("/");
}
});