Mercurial > hg > Members > nobuyasu > Consensus
annotate target/scala-2.9.1/classes/routes @ 17:a134edaebf6f
modified UserModel/appendRequests
author | one |
---|---|
date | Tue, 02 Oct 2012 14:51:24 +0900 |
parents | 6aa0452a7f9f |
children | ad7cfb1f9d03 |
rev | line source |
---|---|
0 | 1 # Routes |
2 # This file defines all application routes (Higher priority routes first) | |
3 # ~~~~ | |
4 | |
5 # Home page | |
6
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
4
diff
changeset
|
6 GET / controllers.Application.index() |
17 | 7 PUT /users/create/:name controllers.User.createUser(name: String) |
9 | 8 GET /users/browse/:name controllers.User.getUser(name: String) |
9 GET /users/requests/:name controllers.User.getUserRequests(name: String) | |
11 | 10 GET /users/consensus/:name controllers.User.getUserConsensus(name: String) |
11 GET /users/claims/:name controllers.User.getUserClaims(name: String) | |
9 | 12 |
17 | 13 POST /claims/create controllers.Claim.crateClaim() |
14 | |
15 | |
9 | 16 # test action |
17 POST /hello controllers.Application.hello() | |
18 GET /test controllers.Application.test() | |
0 | 19 |
20 | |
21 # Map static resources from the /public folder to the /assets URL path | |
22 GET /assets/*file controllers.Assets.at(path="/public", file) | |
23 |