ForgotPassword

This commit is contained in:
MaxKey
2022-04-25 22:00:45 +08:00
parent d6856b1f54
commit 7ddde38019
25 changed files with 599 additions and 160 deletions

View File

@@ -67,6 +67,11 @@ public class ChangePassword extends JpaBaseEntity{
this.setInstId(userInfo.getInstId());
}
public void clearPassword() {
this.password ="";
this.decipherable = "";
}
/**
* @return the id
*/

View File

@@ -152,6 +152,7 @@ public class PasswordPolicyRepository {
public ArrayList<Rule> getPasswordPolicyRuleList() {
getPasswordPolicy();
return passwordPolicyRuleList;
}