From f91f92c815ce701bbef3db32863974c7a1bf6064 Mon Sep 17 00:00:00 2001 From: geek Date: Wed, 6 Jun 2018 17:57:18 +0900 Subject: [PATCH] ing --- .../overflow/service/central/email/EmailAuthService.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; }