Delete user from code verification table

This commit is contained in:
Sofia Baltzi 2018-05-22 10:04:44 +00:00
parent e18e1fa680
commit c00212f915
1 changed files with 1 additions and 0 deletions

View File

@ -69,6 +69,7 @@ public class VerifyToDeleteServlet extends HttpServlet {
} else if (isZombie) {
ldapActions.deleteZombieUser(formUsername);
}
verificationActions.deleteVerificationEntry(formUsername);
response.sendRedirect(UrlConstructor.getRedirectUrl(request,"successDeleteAccount.jsp"));
}