ajout CORS

This commit is contained in:
François Pelletier 2024-09-08 21:03:41 -04:00
parent f7abfc4902
commit d896049932
5 changed files with 68 additions and 20 deletions

View file

@ -1,24 +1,17 @@
package controllers
import javax.inject._
import play.api._
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())
}
}