Created
September 3, 2015 17:27
-
-
Save loicknuchel/dbce84205ecc73ea20a4 to your computer and use it in GitHub Desktop.
Avez vous trouvé le bug ? En combien de temps ?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def details(eventId: String, exponentId: String) = SecuredAction.async { implicit req => | |
withEvent(exponentId) { event => | |
withExponent(eventId) { exponent => | |
AttendeeRepository.findByUuids(exponent.info.team).map { team => | |
Ok(backend.views.html.Events.Exponents.details(exponent, team, event)) | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment