aboutsummaryrefslogtreecommitdiff
path: root/src/routes/api/events/group
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-07-25 00:19:44 -0700
committerFuwn <[email protected]>2024-07-25 00:20:23 -0700
commit2d9235070856c0a5032ddf47f7b1dc7cc5cceb60 (patch)
tree4677f0355872a0f7f55d38a372ec5e3870771182 /src/routes/api/events/group
parentfeat(notifications): allow unsubscribe (diff)
downloaddue.moe-2d9235070856c0a5032ddf47f7b1dc7cc5cceb60.tar.xz
due.moe-2d9235070856c0a5032ddf47f7b1dc7cc5cceb60.zip
refactor(Database): separate providers
Diffstat (limited to 'src/routes/api/events/group')
-rw-r--r--src/routes/api/events/group/+server.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/api/events/group/+server.ts b/src/routes/api/events/group/+server.ts
index b79895fd..20637de0 100644
--- a/src/routes/api/events/group/+server.ts
+++ b/src/routes/api/events/group/+server.ts
@@ -1,4 +1,4 @@
-import { getGroup } from '$lib/Database/groups';
+import { getGroup } from '$lib/Database/Supabase/groups';
export const GET = async ({ url }) =>
Response.json(await getGroup(url.searchParams.get('slug') || ''));