mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-04-10 15:05:35 -04:00
9 lines
281 B
TypeScript
9 lines
281 B
TypeScript
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("/");
|
|
}
|
|
});
|