Created
March 24, 2012 14:19
-
-
Save molekilla/2183411 to your computer and use it in GitHub Desktop.
Escuelita de Scala - Parte 3
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
# Rutas | |
# ~~~~ | |
# RegPubFinder | |
GET / controllers.Application.index | |
GET /about controllers.Application.about | |
GET /findByName/:searchText controllers.Application.findByName(searchText: String) | |
GET /typeahead/:searchText controllers.Application.typeahead(searchText: String) | |
GET /sa/:ficha controllers.Application.show(ficha: String) | |
# Recursos estaticos /public -> /assets | |
GET /assets/*file controllers.Assets.at(path="/public", file) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment