1
0

routes 687 B

123456789101112131415
  1. # Routes
  2. # This file defines all application routes (Higher priority routes first)
  3. # ~~~~
  4. # Home page
  5. GET / controllers.Application.index
  6. GET /room/chat controllers.Application.chat(username)
  7. GET /jsRoutes controllers.Application.javascriptRoutes
  8. GET /cards controllers.Cards.dump
  9. POST /cards controllers.Cards.add
  10. GET /cards/random controllers.Cards.random
  11. # Map static resources from the /public folder to the /assets URL path
  12. GET /assets/*file controllers.Assets.at(path="/public", file)