1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-19 05:09:40 +02:00
mealie/frontend/middleware/advanced-only.ts

9 lines
300 B
TypeScript
Raw Permalink Normal View History

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("/");
}
});