This commit is contained in:
kakkokari-gtyih 2024-10-05 00:08:50 +09:00
parent b0b6d746b0
commit b6307b5ce2
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ export class ApiServerService {
private userEntityService: UserEntityService,
private apiCallService: ApiCallService,
private signupApiService: SignupApiService,
private signinFlowApiService: SigninApiService,
private signinApiService: SigninApiService,
private signinWithPasskeyApiService: SigninWithPasskeyApiService,
) {
//this.createServer = this.createServer.bind(this);
@ -133,7 +133,7 @@ export class ApiServerService {
'turnstile-response'?: string;
'm-captcha-response'?: string;
};
}>('/signin-flow', (request, reply) => this.signinFlowApiService.signin(request, reply));
}>('/signin-flow', (request, reply) => this.signinApiService.signin(request, reply));
fastify.post<{
Body: {