mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 10:13:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			261 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			261 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| interface GroupOnlyRedirectParams {
 | |
|   $auth: any
 | |
|   route: any
 | |
|   redirect: (path: string) => void
 | |
| }
 | |
| 
 | |
| export default function ({ $auth, route, redirect }: GroupOnlyRedirectParams) {
 | |
|   if (route.params.groupSlug !== $auth.user.groupSlug) {
 | |
|     redirect("/")
 | |
|   }
 | |
| }
 |