diff options
| author | Fuwn <[email protected]> | 2024-07-25 00:24:50 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-07-25 00:24:50 -0700 |
| commit | 17ed84c223620c23064bdcf8dabc9edd02760be8 (patch) | |
| tree | 46677d07a7298f9bcb12fd0d82ca240eaea50b26 /src/routes/api/badges | |
| parent | refactor(Database): separate providers (diff) | |
| download | due.moe-17ed84c223620c23064bdcf8dabc9edd02760be8.tar.xz due.moe-17ed84c223620c23064bdcf8dabc9edd02760be8.zip | |
refactor(Database): move Supabase user modules to User module
Diffstat (limited to 'src/routes/api/badges')
| -rw-r--r-- | src/routes/api/badges/+server.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/api/badges/+server.ts b/src/routes/api/badges/+server.ts index 7d800f4b..036a6435 100644 --- a/src/routes/api/badges/+server.ts +++ b/src/routes/api/badges/+server.ts @@ -10,7 +10,7 @@ import { setShadowHidden, setShadowHiddenBadge, incrementClickCount -} from '$lib/Database/Supabase/userBadges'; +} from '$lib/Database/Supabase/User/badges'; import authorisedJson from '$lib/Data/Static/authorised.json'; const unauthorised = new Response('Unauthorised', { status: 401 }); |