You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
632 B

4 years ago
4 years ago
  1. # Routes
  2. # This file defines all application routes (Higher priority routes first)
  3. # ~~~~
  4. # Home page
  5. GET / controllers.HomeController.index
  6. GET /cars controllers.HomeController.cars
  7. GET /book controllers.HomeController.book
  8. GET /authors/:bookId controllers.MonixHomeController.authors(bookId: Long)
  9. GET /user controllers.HomeController.user
  10. # Map static resources from the /public folder to the /assets URL path
  11. GET /assets/*file controllers.Assets.versioned(path="/public", file: Asset)