Subooru-Web/src/pages/admin/index.svelte

10 lines
196 B
Svelte
Raw Normal View History

2021-07-05 03:03:21 -04:00
<script>
const isAdmin = false
import { leftover, goto } from '@roxi/routify'
const [...fragments] = $leftover.split('/')
if(!isAdmin)
$goto('/error/401')
</script>
HELLO