Ajout CORS

This commit is contained in:
François Pelletier 2024-08-31 23:27:03 -04:00
parent b7635a1ac0
commit 0789487841
5 changed files with 65 additions and 15 deletions

View file

@ -1,24 +1,17 @@
package controllers
import play.api.mvc._
import actions.CORSAction
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 {
class HomeController @Inject()(
val controllerComponents: ControllerComponents,
corsAction: CORSAction
) 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] =>
def index(): Action[AnyContent] = corsAction { implicit request =>
Ok(views.html.index())
}
}
}