Scala-Play-Slick-Demo/conf/routes

13 lines
559 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
2020-05-17 18:00:24 +00:00
GET /authors/:bookId controllers.HomeController.authors(bookId: Long)
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)