mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-02-24 10:57:23 -08:00
12 lines
399 B
TypeScript
12 lines
399 B
TypeScript
interface AdvancedOnlyRedirectParams {
|
|
$auth: any
|
|
redirect: (path: string) => void
|
|
}
|
|
export default function ({ $auth, redirect }: AdvancedOnlyRedirectParams) {
|
|
// If the user is not allowed to access advanced features redirect to the home page
|
|
if (!$auth.user.advanced) {
|
|
console.warn("User is not allowed to access advanced features");
|
|
return redirect("/")
|
|
}
|
|
}
|