diff options
| author | Mar0xy <marie@kaifa.ch> | 2023-11-16 20:08:16 +0100 |
|---|---|---|
| committer | Mar0xy <marie@kaifa.ch> | 2023-11-16 20:08:16 +0100 |
| commit | 67dceab22e214b305af6ce6c7afb9586f0029209 (patch) | |
| tree | 3a9f0f02ad7878b4eec103470dd03d687d283ba4 /packages/backend/src | |
| parent | upd: add multipart support to oauth/token (diff) | |
| download | sharkey-67dceab22e214b305af6ce6c7afb9586f0029209.tar.gz sharkey-67dceab22e214b305af6ce6c7afb9586f0029209.tar.bz2 sharkey-67dceab22e214b305af6ce6c7afb9586f0029209.zip | |
fix: errors
Diffstat (limited to 'packages/backend/src')
| -rw-r--r-- | packages/backend/src/server/oauth/OAuth2ProviderService.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/backend/src/server/oauth/OAuth2ProviderService.ts b/packages/backend/src/server/oauth/OAuth2ProviderService.ts index a7c9a3cc18..cbb91543c3 100644 --- a/packages/backend/src/server/oauth/OAuth2ProviderService.ts +++ b/packages/backend/src/server/oauth/OAuth2ProviderService.ts @@ -12,6 +12,8 @@ import type { Config } from '@/config.js'; import { DI } from '@/di-symbols.js'; */ import multer from 'fastify-multer'; import { bindThis } from '@/decorators.js'; +import type { Config } from '@/config.js'; +import { DI } from '@/di-symbols.js'; import type { FastifyInstance } from 'fastify'; function getClient(BASE_URL: string, authorization: string | undefined): MegalodonInterface { |