Advertisement
kvitso

routes

May 6th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. # Routes
  2. # This file defines all application routes (Higher priority routes first)
  3. # ~~~~
  4.  
  5. # Home page
  6. GET / controllers.Application.home()
  7.  
  8. # Authentication
  9. GET /login controllers.Authentication.login()
  10. POST /login controllers.Authentication.authenticate()
  11. GET /logout controllers.Authentication.logout()
  12.  
  13. # Map static resources from the /public folder to the /assets URL path
  14. GET /assets/*file controllers.Assets.at(path="/public", file)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement