3 # This file defines all application routes (Higher priority routes first)
12 GET /v1/iec/status App.GetStatus
14 # Ignore favicon requests
17 # Map static resources from the /app/public folder to the /public path
18 GET /public/*filepath Static.Serve("public")
20 # Catch all, this will route any request into the controller path
23 # Enabling this exposes any controller and function to the web.
24 # ** This is a serious security issue if used online **
26 # For rapid development uncomment the following to add new controller.action endpoints
27 # without having to add them to the routes table.
28 # * /:controller/:action :controller.:action