Files
mealie/frontend/middleware/admin-only.ts
2024-01-14 16:03:31 +00:00

11 lines
280 B
TypeScript

interface AuthRedirectParams {
$auth: any
redirect: (path: string) => void
}
export default function ({ $auth, redirect }: AuthRedirectParams) {
// If the user is not an admin redirect to the home page
if (!$auth.user.admin) {
return redirect("/")
}
}