email token duplication check

This commit is contained in:
geek 2018-06-15 17:02:29 +09:00
parent 5bfaa4b2b3
commit 95fb581bae

View File

@ -132,6 +132,18 @@ public class CentralMemberService implements MemberService {
return member; return member;
} }
public Member reSendEmail(String email) throws OverflowException {
// Member member = this.memberDAO.findByEmail(email);
//
// if (member != null && member.getMetaMemberStatus().getId().equals(MetaMemberStatus.Enum.NORMAL.getValue())) {
// throw new OverflowException("This email has already been verified.", new Throwable());
// }
//
// List<EmailAuth> auths = this.emailAuthService.readByMember(member.getId());
//
return null;
}
public Member resetPassword(String token, String password) throws OverflowException { public Member resetPassword(String token, String password) throws OverflowException {
String deStr = null; String deStr = null;