breakout-custom/app/controllers/HomeController.scala
François Pelletier b7635a1ac0 Ajout index
2024-08-31 22:34:44 -04:00

24 lines
No EOL
628 B
Scala

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())
}
}