issue # 이메일 인증 api 주소 수정
All checks were successful
Test CI / build (push) Successful in 19s

This commit is contained in:
2025-12-14 20:02:37 +09:00
parent 64540e397e
commit 9173556204

View File

@@ -36,7 +36,7 @@ export class AccountNetwork extends BaseNetwork {
async sendVerificationCode(data: SendVerificationCodeRequest) {
return await this.post<SendVerificationCodeResponse>(
this.baseUrl + "/send-verification-code"
this.baseUrl + "/send-email-verification-code"
, data
, {
authPass: true
@@ -46,7 +46,7 @@ export class AccountNetwork extends BaseNetwork {
async verifyCode(data: VerifyCodeRequest) {
return await this.post<VerifyCodeResponse>(
this.baseUrl + "/verify-code"
this.baseUrl + "/verify-email-verification-code"
, data
, {
authPass: true