Skip to content

Commit

Permalink
Completed evaluation of vocal exercise
Browse files Browse the repository at this point in the history
And some bugfixes
  • Loading branch information
ms@Nicro authored and ms@Nicro committed Jan 8, 2024
1 parent af0bd0d commit 34bb9d0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/controller/InvitePatient.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@ public class InvitePatient extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException {
HttpSession session = request.getSession();
model.service.registration.Registration registration=new Registration();
registration.invitePatient((Integer) session.getAttribute("id"),(String) request.getParameter("email"),(String) request.getParameter("nome"),(String) request.getParameter("cognome"));
registration.invitePatient((Integer) session.getAttribute("id"), request.getParameter("email"), request.getParameter("nome"), request.getParameter("cognome"));
response.sendRedirect("JSP/homeTherapist.jsp");

}

}

0 comments on commit 34bb9d0

Please sign in to comment.