mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-02-23 10:27:23 -08:00
11 lines
282 B
TypeScript
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("/")
|
|
}
|
|
}
|