Skip to content

Commit

Permalink
♻️ Fix according to code convention
Browse files Browse the repository at this point in the history
Co-authored-by: 이석찬 / Lee Sukchan <[email protected]>
  • Loading branch information
paul2126 and sukchan-0811 authored Oct 25, 2023
1 parent d5fbd4e commit f947058
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,22 @@ interface AuthService {
): Response<AuthTokenDto>

@POST("/user/validateemail/signup/send/")
suspend fun verify_send_signup(
suspend fun verifySendSignup(
@Body verifyEmailSendRequest: AuthVerifyEmailSendRequest
): Response<Void>

@POST("/user/validateemail/pw/send/")
suspend fun verify_send_pw(
suspend fun verifySendPW(
@Body verifyEmailSendRequest: AuthVerifyEmailSendRequest
): Response<Void>

@POST("/user/validateemail/signup/accept/")
suspend fun verify_accept_signup(
suspend fun verifyAcceptSignup(
@Body verifyEmailAcceptRequest: AuthVerifyEmailAcceptRequest
): Response<Void>

@POST("/user/validateemail/pw/accept/")
suspend fun verify_accept_pw(
suspend fun verifyAcceptPW(
@Body verifyEmailAcceptRequest: AuthVerifyEmailAcceptRequest
): Response<AuthTokenDto>

Expand Down

0 comments on commit f947058

Please sign in to comment.