mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-04-10 06:55:35 -04:00
9 lines
300 B
TypeScript
9 lines
300 B
TypeScript
export default defineNuxtRouteMiddleware(() => {
|
|
const { user } = useMealieAuth();
|
|
// If the user is not allowed to access advanced features redirect to the home page
|
|
if (!user.value?.advanced) {
|
|
console.warn("User is not allowed to access advanced features");
|
|
navigateTo("/");
|
|
}
|
|
});
|