Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. void confirmUser(ConfirmationToken confirmationToken) {
  2.  
  3. final User user = confirmationToken.getUser();
  4.  
  5. user.setEnabled(true);
  6.  
  7. userRepository.save(user);
  8.  
  9. confirmationTokenService.deleteConfirmationToken(confirmationToken.getId());
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement