Skip to content
Snippets Groups Projects
Commit 2693f87b authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Added optional query parameter piround to GET

**/lecturerquestion/{questionId}/answer/.
parent e913b2ee
No related merge requests found
......@@ -247,9 +247,20 @@ public class LecturerQuestionController extends AbstractController {
@ResponseBody
public final List<Answer> getAnswers(
@PathVariable final String questionId,
@RequestParam(value = "piround", required = false) final Integer piRound,
final HttpServletResponse response
) {
List<Answer> answers = questionService.getAnswers(questionId);
List<Answer> answers = null;
if (null == piRound) {
answers = questionService.getAnswers(questionId);
} else {
if (piRound < 1 || piRound > 2) {
response.setStatus(HttpStatus.BAD_REQUEST.value());
return null;
}
answers = questionService.getAnswers(questionId, piRound);
}
if (answers == null) {
return new ArrayList<Answer>();
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment