mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-13 00:24:03 -07:00
10 lines
282 B
TypeScript
10 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("/")
|
|
}
|
|
}
|