This commit is contained in:
kakkokari-gtyih 2024-10-04 23:57:26 +09:00
parent 35dd85762d
commit 1ae44234e3
3 changed files with 5 additions and 5 deletions

View File

@ -19,7 +19,7 @@ import { ApiLoggerService } from './api/ApiLoggerService.js';
import { ApiServerService } from './api/ApiServerService.js';
import { AuthenticateService } from './api/AuthenticateService.js';
import { RateLimiterService } from './api/RateLimiterService.js';
import { SigninFlowApiService } from './api/SigninFlowApiService.js';
import { SigninApiService } from './api/SigninApiService.js';
import { SigninService } from './api/SigninService.js';
import { SignupApiService } from './api/SignupApiService.js';
import { StreamingApiServerService } from './api/StreamingApiServerService.js';
@ -71,7 +71,7 @@ import { SigninWithPasskeyApiService } from './api/SigninWithPasskeyApiService.j
ApiServerService,
AuthenticateService,
RateLimiterService,
SigninFlowApiService,
SigninApiService,
SigninWithPasskeyApiService,
SigninService,
SignupApiService,

View File

@ -17,7 +17,7 @@ import { bindThis } from '@/decorators.js';
import endpoints from './endpoints.js';
import { ApiCallService } from './ApiCallService.js';
import { SignupApiService } from './SignupApiService.js';
import { SigninFlowApiService } from './SigninFlowApiService.js';
import { SigninApiService } from './SigninApiService.js';
import { SigninWithPasskeyApiService } from './SigninWithPasskeyApiService.js';
import type { FastifyInstance, FastifyPluginOptions } from 'fastify';
@ -38,7 +38,7 @@ export class ApiServerService {
private userEntityService: UserEntityService,
private apiCallService: ApiCallService,
private signupApiService: SignupApiService,
private signinFlowApiService: SigninFlowApiService,
private signinFlowApiService: SigninApiService,
private signinWithPasskeyApiService: SigninWithPasskeyApiService,
) {
//this.createServer = this.createServer.bind(this);

View File

@ -30,7 +30,7 @@ import type { AuthenticationResponseJSON } from '@simplewebauthn/types';
import type { FastifyReply, FastifyRequest } from 'fastify';
@Injectable()
export class SigninFlowApiService {
export class SigninApiService {
constructor(
@Inject(DI.config)
private config: Config,