mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
7 lines
255 B
TypeScript
7 lines
255 B
TypeScript
import type { LayoutServerLoad } from './$types';
|
|
|
|
export const load = (async ({ locals: { api, user } }) => {
|
|
const { data: serverVersion } = await api.serverInfoApi.getServerVersion();
|
|
|
|
return { serverVersion, user };
|
|
}) satisfies LayoutServerLoad;
|