routes 524 B

123456789101112
  1. # Routes
  2. # This file defines all application routes (Higher priority routes first)
  3. # https://www.playframework.com/documentation/latest/ScalaRouting
  4. # ~~~~
  5. # An example controller showing a sample home page
  6. GET / controllers.HomeController.index
  7. GET /ingredients controllers.IngredientController.editorPage
  8. # Map static resources from the /public folder to the /assets URL path
  9. GET /assets/*file controllers.Assets.versioned(path="/public", file: Asset)