annotate target/scala-2.9.1/classes/routes @ 11:6aa0452a7f9f

add controllers/Claim.java
author one
date Tue, 02 Oct 2012 10:36:39 +0900 (2012-10-02)
parents d050b7fb4cda
children a134edaebf6f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 # Routes
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 # This file defines all application routes (Higher priority routes first)
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 # ~~~~
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
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()
7
2122c50278bd add Global.java, ande models/*
one
parents: 6
diff changeset
7 PUT /users/create/:name controllers.User.create(name: String)
9
d050b7fb4cda create getUserRequests action
one
parents: 7
diff changeset
8 GET /users/browse/:name controllers.User.getUser(name: String)
d050b7fb4cda create getUserRequests action
one
parents: 7
diff changeset
9 GET /users/requests/:name controllers.User.getUserRequests(name: String)
11
6aa0452a7f9f add controllers/Claim.java
one
parents: 9
diff changeset
10 GET /users/consensus/:name controllers.User.getUserConsensus(name: String)
6aa0452a7f9f add controllers/Claim.java
one
parents: 9
diff changeset
11 GET /users/claims/:name controllers.User.getUserClaims(name: String)
9
d050b7fb4cda create getUserRequests action
one
parents: 7
diff changeset
12
d050b7fb4cda create getUserRequests action
one
parents: 7
diff changeset
13 # test action
d050b7fb4cda create getUserRequests action
one
parents: 7
diff changeset
14 POST /hello controllers.Application.hello()
d050b7fb4cda create getUserRequests action
one
parents: 7
diff changeset
15 GET /test controllers.Application.test()
0
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
16
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
17
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
18 # Map static resources from the /public folder to the /assets URL path
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
19 GET /assets/*file controllers.Assets.at(path="/public", file)
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
20