Parent:
[14c0cf]
(diff)
Child:
[ce5ad5]
(diff)
Download this file
routes
17 lines (14 with data), 840 Bytes
# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~
# Home page
GET / controllers.Application.index()
GET /projects controllers.Application.projects(page: Integer ?= 1)
GET /projects/ controllers.Application.projects(page: Integer ?= 1)
GET /projects/all controllers.Application.projects(page: Integer ?= -1)
GET /projects/:page controllers.Application.projects(page : Integer)
GET /project/:name controllers.Application.getProject(name : String)
GET /project/:name/m/:id controllers.Application.getMetric(name : String, id : String)
GET /search controllers.Application.search()
# Map static resources from the /public folder to the /assets URL path
GET /assets/*file controllers.Assets.at(path="/public", file)