open-webui/src/routes/(app)/+layout.svelte

13 lines
226 B
Svelte
Raw Normal View History

2023-11-19 01:47:12 +01:00
<script>
import { config, user } from '$lib/stores';
import { goto } from '$app/navigation';
if ($config && $config.auth && $user === undefined) {
goto('/auth');
}
</script>
{#if $config !== undefined}
<slot />
{/if}