routes 687 B

12345678910111213
  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 controllers.Application.chatRoom(username: Option[String])
  7. GET /room/chat controllers.Application.chat(username)
  8. GET /assets/javascripts/chatroom.js controllers.Application.chatRoomJs(username: String)
  9. GET /jsRoutes controllers.Application.javascriptRoutes
  10. # Map static resources from the /public folder to the /assets URL path
  11. GET /assets/*file controllers.Assets.at(path="/public", file)