routes 605 B

123456789101112
  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. # Map static resources from the /public folder to the /assets URL path
  10. GET /assets/*file controllers.Assets.at(path="/public", file)