aboutsummaryrefslogtreecommitdiff
path: root/src/routes/api/events/group/+server.ts
blob: b95db775f0ceab688a37cd58cc6e12273c66efe8 (plain) (blame)
1
2
3
4
import { getGroup } from "$lib/Database/SB/groups";

export const GET = async ({ url }) =>
	Response.json(await getGroup(url.searchParams.get("slug") || ""));