mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +00:00
24 lines
569 B
TypeScript
24 lines
569 B
TypeScript
import { AppRoute } from '$lib/constants';
|
|
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, AppRoute.AUTH_LOGIN);
|
|
} else if (!user.isAdmin) {
|
|
throw redirect(302, AppRoute.PHOTOS);
|
|
}
|
|
|
|
const { data: allUsers } = await api.userApi.getAllUsers({ isAll: false });
|
|
|
|
return {
|
|
user,
|
|
allUsers,
|
|
meta: {
|
|
title: 'User Management',
|
|
},
|
|
};
|
|
}) satisfies PageServerLoad;
|