File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,12 +21,13 @@ import scala.concurrent.Future
2121@ Singleton
2222class Blog @ Inject ()(
2323 components : ControllerComponents ,
24- )(implicit ec : ExecutionContext , val reverseRouter : _root_.controllers.documentation.ReverseRouter )
24+ )(implicit ec : ExecutionContext , val reverseRouter : _root_.controllers.documentation.ReverseRouter )
2525 extends AbstractController (components)
2626 with Common
2727 with I18nSupport {
2828
29- val blogName = " Play Framework Blog"
29+ val blogName = " Play Framework Blog"
30+
3031 def index () = Action { implicit request =>
3132 Ok (html.blog.index(blogName))
3233 }
Original file line number Diff line number Diff line change @@ -60,10 +60,10 @@ GET /.well-known/security.txt controllers
6060GET /sitemap-documentation.xml controllers.documentation.DocumentationController.sitemap
6161GET /robots.txt controllers.Application.robots
6262
63- GET /blog controllers.Blog.index
63+ GET /blog controllers.Blog.index()
6464GET /play-on-graal controllers.Application.movedTo(url="/blog/play-on-graal", originalPath="foo")
6565GET /play-socket-io controllers.Application.movedTo(url="/blog/play-socket-io", originalPath="foo")
66- GET /blog/play-on-graal controllers.Blog.graal
67- GET /blog/play-socket-io controllers.Blog.socketio
66+ GET /blog/play-on-graal controllers.Blog.graal()
67+ GET /blog/play-socket-io controllers.Blog.socketio()
6868
6969GET /*route controllers.Application.onHandlerNotFound(route)
You can’t perform that action at this time.
0 commit comments