From 6e400246600d7a23f75f1676f728f89a17cafc41 Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 13 Jan 2023 17:49:05 +0900 Subject: [PATCH] typo --- packages/backend/src/server/api/ApiServerService.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/backend/src/server/api/ApiServerService.ts b/packages/backend/src/server/api/ApiServerService.ts index ee09349d8..b29c9616c 100644 --- a/packages/backend/src/server/api/ApiServerService.ts +++ b/packages/backend/src/server/api/ApiServerService.ts @@ -36,8 +36,8 @@ export class ApiServerService { private userEntityService: UserEntityService, private apiCallService: ApiCallService, - private signupApiServiceService: SignupApiService, - private signinApiServiceService: SigninApiService, + private signupApiService: SignupApiService, + private signinApiService: SigninApiService, private githubServerService: GithubServerService, private discordServerService: DiscordServerService, private twitterServerService: TwitterServerService, @@ -116,7 +116,7 @@ export class ApiServerService { 'g-recaptcha-response'?: string; 'turnstile-response'?: string; } - }>('/signup', (request, reply) => this.signupApiServiceService.signup(request, reply)); + }>('/signup', (request, reply) => this.signupApiService.signup(request, reply)); fastify.post<{ Body: { @@ -129,9 +129,9 @@ export class ApiServerService { credentialId?: string; challengeId?: string; }; - }>('/signin', (request, reply) => this.signinApiServiceService.signin(request, reply)); + }>('/signin', (request, reply) => this.signinApiService.signin(request, reply)); - fastify.post<{ Body: { code: string; } }>('/signup-pending', (request, reply) => this.signupApiServiceService.signupPending(request, reply)); + fastify.post<{ Body: { code: string; } }>('/signup-pending', (request, reply) => this.signupApiService.signupPending(request, reply)); fastify.register(this.discordServerService.create); fastify.register(this.githubServerService.create);