Integrate cilium CNI into IEC
[iec.git] / src / foundation / api / apiserver / conf / routes
1 # Routes Config
2 #
3 # This file defines all application routes (Higher priority routes first)
4 #
5
6 module:testrunner
7 # module:jobs
8
9
10 GET     /                                       App.Index
11
12 GET     /v1/iec/status                          App.GetStatus
13
14 # Ignore favicon requests
15 GET     /favicon.ico                            404
16
17 # Map static resources from the /app/public folder to the /public path
18 GET     /public/*filepath                       Static.Serve("public")
19
20 # Catch all, this will route any request into the controller path
21 #
22 #                    **** WARNING ****
23 # Enabling this exposes any controller and function to the web.
24 # ** This is a serious security issue if used online **
25 #
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