Created
December 11, 2012 21:59
-
-
Save mariussoutier/4262632 to your computer and use it in GitHub Desktop.
This file contains 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
# Map to language via RegEx | |
/$language<[a-z]{2}>/videos/:id controllers.Video.showVideo(id: Long, language: String) | |
# Hard-code supported languages | |
/de/videos/:id controllers.Video.showVideo(id: Long, language = "de") | |
/en/videos/:id controllers.Video.showVideo(id: Long, language = "en") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment