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