mealie/frontend/middleware/admin-only.ts
2024-01-31 10:33:05 +00:00

11 lines
282 B
TypeScript

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