diff --git a/src/main/java/com/loafle/overflow/service/central/email/EmailAuthService.java b/src/main/java/com/loafle/overflow/service/central/email/EmailAuthService.java index 576444c..85f2845 100644 --- a/src/main/java/com/loafle/overflow/service/central/email/EmailAuthService.java +++ b/src/main/java/com/loafle/overflow/service/central/email/EmailAuthService.java @@ -9,7 +9,7 @@ import java.util.List; public interface EmailAuthService { @WebappAPI - EmailAuth read() throws OverflowException; + EmailAuth read(Long id) throws OverflowException; @WebappAPI EmailAuth readBySignupAuthKey(String token) throws OverflowException; @@ -28,4 +28,7 @@ public interface EmailAuthService { @WebappAPI EmailAuth sendEmailResetPassword(Member member) throws OverflowException; + + @WebappAPI + EmailAuth readByToken(String token) throws OverflowException; }