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
Commits
1d40e8d6
There was a problem fetching the latest pipeline status.
Commit
1d40e8d6
authored
7 years ago
by
Paul-Christian Volkmer
Committed by
Daniel Gerhardt
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Remove unused request param
parent
4a930bb3
No related merge requests found
Pipeline
#9134
failed with stages
in 59 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/thm/arsnova/controller/WelcomeController.java
+2
-2
2 additions, 2 deletions
...ain/java/de/thm/arsnova/controller/WelcomeController.java
with
2 additions
and
2 deletions
src/main/java/de/thm/arsnova/controller/WelcomeController.java
+
2
−
2
View file @
1d40e8d6
...
@@ -57,13 +57,13 @@ public class WelcomeController extends AbstractController {
...
@@ -57,13 +57,13 @@ public class WelcomeController extends AbstractController {
private
Properties
versionInfoProperties
;
private
Properties
versionInfoProperties
;
@RequestMapping
(
value
=
"/"
,
method
=
RequestMethod
.
GET
)
@RequestMapping
(
value
=
"/"
,
method
=
RequestMethod
.
GET
)
public
View
home
(
final
HttpServletRequest
request
)
{
public
View
home
()
{
return
new
RedirectView
(
mobileContextPath
+
"/"
,
false
);
return
new
RedirectView
(
mobileContextPath
+
"/"
,
false
);
}
}
@RequestMapping
(
value
=
"/"
,
method
=
RequestMethod
.
GET
,
produces
=
"application/json"
)
@RequestMapping
(
value
=
"/"
,
method
=
RequestMethod
.
GET
,
produces
=
"application/json"
)
@ResponseBody
@ResponseBody
public
Map
<
String
,
Object
>
jsonHome
(
final
HttpServletRequest
request
)
{
public
Map
<
String
,
Object
>
jsonHome
()
{
Map
<
String
,
Object
>
response
=
new
HashMap
<>();
Map
<
String
,
Object
>
response
=
new
HashMap
<>();
Map
<
String
,
Object
>
version
=
new
HashMap
<>();
Map
<
String
,
Object
>
version
=
new
HashMap
<>();
...
...
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