return showThesisDetails(mapping, request, thesis);
}
public ActionForward approveThesis(final ActionMapping mapping, final ActionForm actionForm,
final HttpServletRequest request, final HttpServletResponse response) throws Exception {
final Thesis thesis = getDomainObject(request, "thesisOid");
try {
ApproveThesisDiscussion.runApproveThesisDiscussion(thesis);
addActionMessage("mail", request, "thesis.evaluated.mail.sent");
} catch (DomainException e) {
addActionMessage("error", request, e.getKey(), e.getArgs());