You've already forked immich
							
							
				mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 00:18:28 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			490 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			490 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { redirect } from '@sveltejs/kit';
 | |
| import type { PageServerLoad } from './$types';
 | |
| 
 | |
| export const load = (async ({ parent, locals: { api } }) => {
 | |
| 	const { user } = await parent();
 | |
| 
 | |
| 	if (!user) {
 | |
| 		throw redirect(302, '/auth/login');
 | |
| 	} else if (!user.isAdmin) {
 | |
| 		throw redirect(302, '/photos');
 | |
| 	}
 | |
| 
 | |
| 	const { data: allUsers } = await api.userApi.getAllUsers({ isAll: false });
 | |
| 
 | |
| 	return {
 | |
| 		user,
 | |
| 		allUsers,
 | |
| 		meta: {
 | |
| 			title: 'User Management'
 | |
| 		}
 | |
| 	};
 | |
| }) satisfies PageServerLoad;
 |