Ajout index
This commit is contained in:
parent
808c9d7385
commit
b7635a1ac0
3 changed files with 30 additions and 0 deletions
24
app/controllers/HomeController.scala
Normal file
24
app/controllers/HomeController.scala
Normal 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())
|
||||
}
|
||||
}
|
5
app/views/index.scala.html
Normal file
5
app/views/index.scala.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
@()
|
||||
|
||||
@main("Welcome to Play") {
|
||||
<h1>Welcome to Play</h1>
|
||||
}
|
|
@ -1,3 +1,4 @@
|
|||
GET / controllers.HomeController.index()
|
||||
GET /game controllers.GameController.index()
|
||||
GET /bricks controllers.GameController.getBricks()
|
||||
|
||||
|
|
Loading…
Reference in a new issue