Scala-Play-Slick-Demo/conf/routes

14 lines
632 B
Plaintext
Raw Normal View History

2020-05-16 10:10:23 +00:00
# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~
# Home page
GET / controllers.HomeController.index
GET /cars controllers.HomeController.cars
GET /book controllers.HomeController.book
GET /authors/:bookId controllers.MonixHomeController.authors(bookId: Long)
GET /user controllers.HomeController.user
2020-05-16 10:10:23 +00:00
# Map static resources from the /public folder to the /assets URL path
GET /assets/*file controllers.Assets.versioned(path="/public", file: Asset)