routes 919 B

123456789101112131415161718
  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, room)
  7. GET /jsRoutes controllers.Application.javascriptRoutes
  8. GET /stats controllers.Application.stats
  9. GET /cards controllers.Cards.dump
  10. POST /cards controllers.Cards.add
  11. GET /cards/random controllers.Cards.random
  12. GET /cards/exists controllers.Cards.exists(word: String)
  13. # Map static resources from the /public folder to the /assets URL path
  14. GET /assets/*file controllers.Assets.at(path="/public", file)
  15. GET /webjars/*file controllers.WebJarAssets.at(file)