mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-05-29 18:42:28 -04:00
030588e5bb
Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com>
11 lines
280 B
TypeScript
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("/")
|
|
}
|
|
}
|