mirror of
https://github.com/KevinMidboe/immich.git
synced 2026-05-01 11:14:07 +00:00
fix(web): using serverApi on the client request lead to uncaught error (#1767)
This commit is contained in:
25
web/src/routes/+page.server.ts
Normal file
25
web/src/routes/+page.server.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
export const prerender = false;
|
||||
import { serverApi } from '@api';
|
||||
import { redirect } from '@sveltejs/kit';
|
||||
import type { PageServerLoad } from './$types';
|
||||
|
||||
export const load: PageServerLoad = async ({ parent }) => {
|
||||
const { user } = await parent();
|
||||
if (user) {
|
||||
throw redirect(302, '/photos');
|
||||
}
|
||||
|
||||
const { data } = await serverApi.userApi.getUserCount(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'
|
||||
}
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user