Skip to content

Commit

Permalink
chore: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mxdvl committed Jun 12, 2024
1 parent 8fe3333 commit 1bc8d57
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion sport/app/football/controllers/MatchDayController.scala
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ class MatchDayController(
val matches = CompetitionMatchDayList(competitionsService.competitions, competition.id, date)
val edition = Edition(request)
val id = "/atom/interactive/interactives/2023/01/euros-2024/match-centre-euros-2024-header"
contentApiClient.getResponse(contentApiClient.item(id, edition))
contentApiClient
.getResponse(contentApiClient.item(id, edition))
.map(_.interactive.map(InteractiveAtom.make(_)))
.map(renderMatchList(page, matches, filters, _))
}
Expand Down
4 changes: 2 additions & 2 deletions sport/conf/routes
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ GET /football/:tag/fixtures/more/:year/:month/:day.json
GET /football/:tag/fixtures/more/:year/:month/:day football.controllers.FixturesController.moreTagFixturesFor(year, month, day, tag)
GET /football/:tag/fixtures/:year/:month/:day.json football.controllers.FixturesController.tagFixturesForJson(year, month, day, tag)
GET /football/:tag/fixtures/:year/:month/:day football.controllers.FixturesController.tagFixturesFor(year, month, day, tag)
GET /football/:tag/fixtures football.controllers.FixturesController.tagFixturesJson(tag)
GET /football/:tag/fixtures.json football.controllers.FixturesController.tagFixtures(tag)
GET /football/:tag/fixtures football.controllers.FixturesController.tagFixtures(tag)
GET /football/:tag/fixtures.json football.controllers.FixturesController.tagFixturesJson(tag)

GET /football/results/:year/:month/:day.json football.controllers.ResultsController.allResultsForJson(year, month, day)
GET /football/results/:year/:month/:day football.controllers.ResultsController.allResultsFor(year, month, day)
Expand Down

0 comments on commit 1bc8d57

Please sign in to comment.