resendMail method added
This commit is contained in:
parent
79a724263c
commit
4208c5e725
4
pom.xml
4
pom.xml
|
@ -13,7 +13,7 @@
|
|||
<groupId>com.loafle.overflow</groupId>
|
||||
<artifactId>commons-java</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>1.0.79-SNAPSHOT</version>
|
||||
<version>1.0.80-SNAPSHOT</version>
|
||||
<name>com.loafle.overflow.commons-java</name>
|
||||
|
||||
<properties>
|
||||
|
@ -92,4 +92,4 @@
|
|||
</plugin> -->
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
</project>
|
||||
|
|
|
@ -4,6 +4,7 @@ import com.loafle.overflow.core.annotation.WebappAPI;
|
|||
import com.loafle.overflow.core.exception.OverflowException;
|
||||
import com.loafle.overflow.model.domain.DomainMember;
|
||||
import com.loafle.overflow.model.member.Member;
|
||||
import com.loafle.overflow.model.meta.MetaEmailType;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
@ -20,6 +21,9 @@ public interface MemberService {
|
|||
@WebappAPI
|
||||
Member sendEmailForPassword(String email) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
Member reSendEmail(String email) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
Member resetPassword(String token, String password) throws OverflowException;
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user