|
@@ -1,4 +1,5 @@
|
|
|
export const prerender = false;
|
|
|
+import { serverApi } from '@api';
|
|
|
import { redirect } from '@sveltejs/kit';
|
|
|
import type { PageLoad } from './$types';
|
|
|
|
|
@@ -8,6 +9,12 @@ export const load: PageLoad = async ({ parent }) => {
|
|
|
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 🎉',
|