1
0
mirror of https://github.com/immich-app/immich.git synced 2025-10-31 00:18:28 +02:00
Files
immich/web/src/routes/admin/user-management/+page.server.ts

23 lines
490 B
TypeScript
Raw Normal View History

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({ isAll: false });
return {
user,
allUsers,
meta: {
title: 'User Management'
}
};
}) satisfies PageServerLoad;