mirror of
https://github.com/immich-app/immich.git
synced 2025-11-01 02:57:08 -04:00
13 lines
235 B
TypeScript
13 lines
235 B
TypeScript
import { authenticate } from '$lib/utils/auth';
|
|
import type { PageLoad } from './$types';
|
|
|
|
export const load = (async () => {
|
|
await authenticate();
|
|
|
|
return {
|
|
meta: {
|
|
title: 'Workflows',
|
|
},
|
|
};
|
|
}) satisfies PageLoad;
|