# Routes
# This file defines all application routes (Higher priority routes first)
# https://www.playframework.com/documentation/latest/ScalaRouting
# ~~~~

# An example controller showing a sample home page
POST    /scenario/:name                                     controllers.RunScenarioController.run(name: String)
#POST    /scenario/withBackground/:foreground/:background    controllers.RunScenarioController.runWithBac
GET     /scenario                                           controllers.RunScenarioController.get()
#Fetch map of all scenarions and respective default parameters
GET     /scenarios                                          controllers.RunScenarioController.list()

# Map static resources from the /public folder to the /assets URL path
GET     /assets/*file               controllers.Assets.versioned(path="/public", file: Asset)
