Ajout index

This commit is contained in:
François Pelletier 2024-08-31 22:34:44 -04:00
parent 808c9d7385
commit b7635a1ac0
3 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,24 @@
package controllers
import play.api.mvc._
import javax.inject._
/**
* This controller creates an `Action` to handle HTTP requests to the
* application's home page.
*/
@Singleton
class HomeController @Inject()(val controllerComponents: ControllerComponents) extends BaseController {
/**
* Create an Action to render an HTML page.
*
* The configuration in the `routes` file means that this method
* will be called when the application receives a `GET` request with
* a path of `/`.
*/
def index(): Action[AnyContent] = Action { implicit request: Request[AnyContent] =>
Ok(views.html.index())
}
}

View file

@ -0,0 +1,5 @@
@()
@main("Welcome to Play") {
<h1>Welcome to Play</h1>
}

View file

@ -1,3 +1,4 @@
GET / controllers.HomeController.index()
GET /game controllers.GameController.index()
GET /bricks controllers.GameController.getBricks()