Mercurial > hg > Members > nobuyasu > Consensus
view target/scala-2.9.1/classes/routes @ 26:ad7cfb1f9d03
modified checkconsensus
author | one |
---|---|
date | Wed, 03 Oct 2012 03:52:03 +0900 |
parents | a134edaebf6f |
children | 80b5628f17d8 |
line wrap: on
line source
# Routes # This file defines all application routes (Higher priority routes first) # ~~~~ # Home page GET / controllers.Application.index() PUT /users/create/:name controllers.User.createUser(name: String) GET /users/browse/:name controllers.User.getUser(name: String) GET /users/requests/:name controllers.User.getUserRequests(name: String) GET /users/consensus/:name controllers.User.getUserConsensus(name: String) GET /users/claims/:name controllers.User.getUserClaims(name: String) POST /claims/create controllers.Claim.crateClaim() POST /claims/:mentionType/:id/create controllers.Claim.createMention(mentionType: String ,id: String) # test action POST /hello controllers.Application.hello() GET /test controllers.Application.test() # Map static resources from the /public folder to the /assets URL path GET /assets/*file controllers.Assets.at(path="/public", file)