mirror of
https://github.com/immich-app/immich.git
synced 2025-04-18 14:06:26 +02:00

* feat(web): improved server stats
* fix(web): don't log unauthorized errors
* Revert "fix(web): don't log unauthorized errors"
This reverts commit 7fc2987a77
.
21 lines
460 B
TypeScript
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;
|