17 lines
393 B
Svelte
17 lines
393 B
Svelte
<!-- [DEF:StorageIndexPage:Page] -->
|
|
<!--
|
|
@TIER: TRIVIAL
|
|
@PURPOSE: Redirect to the backups page as the default storage view.
|
|
@LAYER: Page
|
|
@INVARIANT: Always redirects to /storage/backups.
|
|
-->
|
|
<script>
|
|
import { onMount } from 'svelte';
|
|
import { goto } from '$app/navigation';
|
|
|
|
onMount(() => {
|
|
goto('/storage/backups');
|
|
});
|
|
</script>
|
|
<!-- [/DEF:StorageIndexPage:Page] -->
|