partey woka update

This commit is contained in:
2022-03-13 15:50:37 +01:00
parent 1c85f2b0fd
commit 8583bec0c6
19 changed files with 2692 additions and 84 deletions
@@ -80,6 +80,18 @@ public class UserManager implements UserDataProvider {
return userRepository.findOne(qUser.username.equalsIgnoreCase(username)).orElse(null);
}
/**
* Gets the by bstly email.
*
* @param email the email
* @return the by bstly email
*/
public User getByBstlyEmail(String email) {
String username = email.replace("@"
+ userEmailDomain, "");
return getByUsername(username);
}
/**
* Gets the by reset token.
*