mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
25 lines
593 B
TypeScript
25 lines
593 B
TypeScript
export const prerender = false;
|
|
|
|
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, '/photos');
|
|
}
|
|
|
|
const { data } = await api.userApi.getUserCount({ admin: true });
|
|
|
|
if (data.userCount > 0) {
|
|
// Redirect to login page if an admin is already registered.
|
|
throw redirect(302, '/auth/login');
|
|
}
|
|
|
|
return {
|
|
meta: {
|
|
title: 'Welcome 🎉',
|
|
description: 'Immich Web Interface'
|
|
}
|
|
};
|
|
}) satisfies PageServerLoad;
|