This commit is contained in:
geek 2018-06-06 17:57:18 +09:00
parent 49f90085d1
commit f91f92c815

View File

@ -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;
}