# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~

module:testrunner

GET	/			App.Index
GET	/login			App.Login
POST	/login			App.LoginDo
GET	/logout			App.Logout
GET	/list			App.List
GET	/create			App.Create
POST	/create			App.CreateDo
GET	/members/:mlname	App.Members
POST	/members/:mlname	App.MembersDo
GET	/config/:mlname		App.Config
POST	/config/:mlname		App.ConfigDo
GET	/delete/:mlname		App.Delete
POST	/delete/:mlname		App.DeleteDo

GET	/forward		App.Forward
POST	/forward		App.ForwardDo

# Ignore favicon requests
GET     /favicon.ico                            404

# Map static resources from the /app/public folder to the /public path
GET     /public/*filepath                       Static.Serve("public")

# Catch all
#*       /:controller/:action                    :controller.:action
