mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
17 lines
437 B
TypeScript
17 lines
437 B
TypeScript
import { redirect } from '@sveltejs/kit';
|
|
import { serverApi } from '@api';
|
|
import type { PageServerLoad } from './$types';
|
|
|
|
export const load: PageServerLoad = async ({ parent }) => {
|
|
const { user } = await parent();
|
|
|
|
if (!user) {
|
|
throw redirect(302, '/auth/login');
|
|
} else if (!user.isAdmin) {
|
|
throw redirect(302, '/photos');
|
|
}
|
|
|
|
const { data: allUsers } = await serverApi.userApi.getAllUsers(false);
|
|
|
|
return { allUsers };
|
|
};
|