-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #233 from PawWithU/feat/232-find-password-api-modify
[Feature] 봉사자, 모집자 비밀번호 찾기 - 이메일 인증 API 수정
- Loading branch information
Showing
5 changed files
with
115 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
...a/com/pawwithu/connectdog/domain/auth/dto/response/IntermediaryEmailWithAuthResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.pawwithu.connectdog.domain.auth.dto.response; | ||
|
||
public record IntermediaryEmailWithAuthResponse(String authCode, String accessToken) { | ||
public static IntermediaryEmailWithAuthResponse of(String authCode, String accessToken){ | ||
return new IntermediaryEmailWithAuthResponse(authCode, accessToken); | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
...java/com/pawwithu/connectdog/domain/auth/dto/response/VolunteerEmailWithAuthResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.pawwithu.connectdog.domain.auth.dto.response; | ||
|
||
public record VolunteerEmailWithAuthResponse(String authCode, String accessToken) { | ||
public static VolunteerEmailWithAuthResponse of(String authCode, String accessToken){ | ||
return new VolunteerEmailWithAuthResponse(authCode, accessToken); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters