Skip to content

Commit

Permalink
fix tournament API
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed May 3, 2016
1 parent 5148d71 commit 0dd2e08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/tournament/src/main/JsonView.scala
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ final class JsonView(
"schedule" -> tour.schedule.map(scheduleJson),
"secondsToFinish" -> tour.isStarted.option(tour.secondsToFinish),
"secondsToStart" -> tour.isCreated.option(tour.secondsToStart),
"startsAt" -> tour.isCreated.option(ISODateTimeFormat.dateTime.print(tour.startsAt)),
"startsAt" -> ISODateTimeFormat.dateTime.print(tour.startsAt),
"pairings" -> data.pairings,
"standing" -> stand,
"me" -> myInfo.map(myInfoJson),
Expand Down

0 comments on commit 0dd2e08

Please sign in to comment.