diff options
| author | Fuwn <[email protected]> | 2024-07-25 00:19:44 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-07-25 00:20:23 -0700 |
| commit | 2d9235070856c0a5032ddf47f7b1dc7cc5cceb60 (patch) | |
| tree | 4677f0355872a0f7f55d38a372ec5e3870771182 /src/routes/api/events/groups | |
| parent | feat(notifications): allow unsubscribe (diff) | |
| download | due.moe-2d9235070856c0a5032ddf47f7b1dc7cc5cceb60.tar.xz due.moe-2d9235070856c0a5032ddf47f7b1dc7cc5cceb60.zip | |
refactor(Database): separate providers
Diffstat (limited to 'src/routes/api/events/groups')
| -rw-r--r-- | src/routes/api/events/groups/+server.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/api/events/groups/+server.ts b/src/routes/api/events/groups/+server.ts index 512dde37..7ed9c344 100644 --- a/src/routes/api/events/groups/+server.ts +++ b/src/routes/api/events/groups/+server.ts @@ -1,3 +1,3 @@ -import { getGroups } from '$lib/Database/groups'; +import { getGroups } from '$lib/Database/Supabase/groups'; export const GET = async () => Response.json(await getGroups()); |