Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ARSnova Backend
Manage
Activity
Members
Labels
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
Paul-Christian Volkmer
ARSnova Backend
Commits
2693f87b
Commit
2693f87b
authored
12 years ago
by
Daniel Gerhardt
Browse files
Options
Downloads
Patches
Plain Diff
Added optional query parameter piround to GET
**/lecturerquestion/{questionId}/answer/.
parent
e913b2ee
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/thm/arsnova/controller/LecturerQuestionController.java
+12
-1
12 additions, 1 deletion
...de/thm/arsnova/controller/LecturerQuestionController.java
with
12 additions
and
1 deletion
src/main/java/de/thm/arsnova/controller/LecturerQuestionController.java
+
12
−
1
View file @
2693f87b
...
...
@@ -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
>();
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment