mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 02:03:35 -04:00 
			
		
		
		
	
		
			
	
	
		
			12 lines
		
	
	
		
			385 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			385 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
|  | interface CanManageRedirectParams { | ||
|  |   $auth: any | ||
|  |   redirect: (path: string) => void | ||
|  | } | ||
|  | export default function ({ $auth, redirect }: CanManageRedirectParams) { | ||
|  |   // If the user is not allowed to manage group settings redirect to the home page
 | ||
|  |   if (!$auth.user?.canManageHousehold) { | ||
|  |     console.warn("User is not allowed to manage household settings"); | ||
|  |     return redirect("/"); | ||
|  |   } | ||
|  | } |