1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-04-18 14:06:26 +02:00
immich/web/src/routes/admin/server-status/+page.server.ts
Michel Heusschen 368142e79b
feat(web): improved server stats ()
* feat(web): improved server stats

* fix(web): don't log unauthorized errors

* Revert "fix(web): don't log unauthorized errors"

This reverts commit 7fc2987a77.
2023-02-26 13:57:34 -06:00

21 lines
460 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: stats } = await api.serverInfoApi.getStats();
return {
stats,
meta: {
title: 'Server Stats'
}
};
}) satisfies PageServerLoad;