Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Queue
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIP
Labrador
Queue
Merge requests
!307
Resolve "Add about page"
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "Add about page"
253-add-about-page-2
into
development
Overview
6
Commits
8
Pipelines
0
Changes
7
All threads resolved!
Hide all comments
Merged
Resolve "Add about page"
Thijs Nulle
requested to merge
253-add-about-page-2
into
development
Apr 28, 2020
Overview
6
Commits
8
Pipelines
0
Changes
7
All threads resolved!
Hide all comments
What does this mr do?
Add an about page, where info of queue is displayed.
Screenshots
Does this MR meet the acceptance criteria?
I have added a changelog entry to reflect the significant changes I made.
Tests were created to test the feature.
I have updated the documentation accordingly.
I adhere to the style guide.
Closes
#253 (closed)
Edited
Apr 28, 2020
by
Thijs Nulle
0
0
Merge request reports
Compare
development
version 4
a0921da8
Jun 9, 2020
version 3
9c5be63d
Jun 9, 2020
version 2
fb113816
Apr 28, 2020
version 1
f7cd4664
Apr 28, 2020
development (base)
and
latest version
latest version
b9c36cb6
8 commits,
Jun 9, 2020
version 4
a0921da8
8 commits,
Jun 9, 2020
version 3
9c5be63d
8 commits,
Jun 9, 2020
version 2
fb113816
7 commits,
Apr 28, 2020
version 1
f7cd4664
6 commits,
Apr 28, 2020
7 files
+
113
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
src/main/java/nl/tudelft/ewi/queue/controller/HomeController.java
+
9
−
1
View file @ b9c36cb6
Edit in single-file editor
Open in Web IDE
Show full file
@@ -62,7 +62,15 @@ public class HomeController {
*/
@GetMapping
(
"/privacy"
)
public
String
privacyStatement
()
{
return
"privacy"
;
return
"home/privacy"
;
}
/**
* @return The path for the about page.
*/
@GetMapping
(
"/about"
)
public
String
about
()
{
return
"home/about"
;
}
/**
Loading