mirror of
https://github.com/immich-app/immich.git
synced 2025-12-19 09:13:14 +03:00
20 lines
480 B
TypeScript
20 lines
480 B
TypeScript
|
|
import { redirect } from '@sveltejs/kit';
|
||
|
|
import { serverApi, UserResponseDto } 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 serverApi.userApi.getAllUsers(false);
|
||
|
|
return {
|
||
|
|
user: user,
|
||
|
|
allUsers: allUsers
|
||
|
|
};
|
||
|
|
};
|