mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
23 lines
469 B
TypeScript
23 lines
469 B
TypeScript
import { redirect } from '@sveltejs/kit';
|
|
import { api } 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 api.userApi.getAllUsers(false);
|
|
|
|
return {
|
|
allUsers,
|
|
meta: {
|
|
title: 'Server Status'
|
|
}
|
|
};
|
|
};
|