This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / web / src / routes / strings / new / +page.server.ts
170 B 6 lines
1import { requireAuth } from "$lib/auth/guards"; 2import type { PageServerLoad } from "./$types"; 3 4export const load: PageServerLoad = (event) => { 5 requireAuth(event); 6};