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/admin-only.ts

8 lines
201 B
TypeScript
Raw Normal View History

export default defineNuxtRouteMiddleware(() => {
const { user } = useMealieAuth();
// If the user is not an admin redirect to the home page
if (!user.value?.admin) {
navigateTo("/");
}
});