mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
5 lines
167 B
TypeScript
5 lines
167 B
TypeScript
import { redirect } from '@sveltejs/kit';
|
|
|
|
export const load = async function ({ locals }) {
|
|
if (!locals?.user?.role?.includes('admin')) throw redirect(302, '/');
|
|
};
|