mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-30 17:53:31 -04:00 
			
		
		
		
	
		
			
	
	
		
			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("/") | ||
|  |     } | ||
|  | } |