This commit is contained in:
geek 2018-05-04 20:28:38 +09:00
parent c24d63c734
commit d54074aabe

View File

@ -19,7 +19,7 @@ public interface MemberService {
@WebappAPI
Member sendEmailForPassword(String email) throws OverflowException;
@WebappAPI
Member resetPassword(String encodeEmail, String pw) throws OverflowException;
Member resetPassword(String token, String pw, String confirmPw) throws OverflowException;
@WebappAPI
Member modify(Member member, String pw) throws OverflowException;
@WebappAPI