mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
22 lines
469 B
TypeScript
22 lines
469 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(false);
|
|
|
|
return {
|
|
allUsers,
|
|
meta: {
|
|
title: 'Server Status'
|
|
}
|
|
};
|
|
}) satisfies PageServerLoad;
|