Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ARSnova Backend
Manage
Activity
Members
Labels
Plan
Issues
27
Issue boards
Milestones
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
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
ARSnova
ARSnova Backend
Merge requests
!38
remove annotation for http servlet response
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
remove annotation for http servlet response
fixSwaggerAnnotation
into
master
Overview
0
Commits
1
Pipelines
2
Changes
2
Merged
Tom Käsler
requested to merge
fixSwaggerAnnotation
into
master
8 years ago
Overview
0
Commits
1
Pipelines
2
Changes
2
Expand
0
0
Merge request reports
Compare
master
version 1
a1455039
8 years ago
master (base)
and
latest version
latest version
ab5519b3
1 commit,
8 years ago
version 1
a1455039
1 commit,
8 years ago
2 files
+
15
−
15
Expand all files
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/main/java/de/thm/arsnova/controller/MotdController.java
+
1
−
1
Options
@@ -93,7 +93,7 @@ public class MotdController extends AbstractController {
@@ -93,7 +93,7 @@ public class MotdController extends AbstractController {
@ResponseStatus
(
HttpStatus
.
CREATED
)
@ResponseStatus
(
HttpStatus
.
CREATED
)
public
Motd
postNewMotd
(
public
Motd
postNewMotd
(
@ApiParam
(
value
=
"current motd"
,
required
=
true
)
@RequestBody
final
Motd
motd
,
@ApiParam
(
value
=
"current motd"
,
required
=
true
)
@RequestBody
final
Motd
motd
,
@ApiParam
(
value
=
"http servlet response"
,
required
=
true
)
final
HttpServletResponse
response
final
HttpServletResponse
response
)
{
)
{
if
(
motd
!=
null
)
{
if
(
motd
!=
null
)
{
Motd
newMotd
=
new
Motd
();
Motd
newMotd
=
new
Motd
();