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