diff options
author | Pacien TRAN-GIRARD | 2015-02-09 00:14:18 +0100 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2015-02-09 00:14:18 +0100 |
commit | d79239a89c795035ea8d8a971aa9953d9e9a8e48 (patch) | |
tree | 0f910aeaafa3781cd436c0af130ef93379afda0a /conf/routes | |
parent | 330d7a719800cded4385c633370f782571891f49 (diff) | |
download | minibay-d79239a89c795035ea8d8a971aa9953d9e9a8e48.tar.gz |
Implement item pages and bids
Diffstat (limited to 'conf/routes')
-rw-r--r-- | conf/routes | 51 |
1 files changed, 25 insertions, 26 deletions
diff --git a/conf/routes b/conf/routes index 903480d..21a5b46 100644 --- a/conf/routes +++ b/conf/routes | |||
@@ -4,51 +4,50 @@ | |||
4 | 4 | ||
5 | 5 | ||
6 | # Home page | 6 | # Home page |
7 | GET / controllers.Application.index | 7 | GET / controllers.Application.index |
8 | GET /terms controllers.Application.terms | 8 | GET /terms controllers.Application.terms |
9 | GET /privacy controllers.Application.privacy | 9 | GET /privacy controllers.Application.privacy |
10 | 10 | ||
11 | # User account | 11 | # User account |
12 | GET /login controllers.Authentication.login | 12 | GET /login controllers.Authentication.login |
13 | POST /login controllers.Authentication.loginSubmit | 13 | POST /login controllers.Authentication.loginSubmit |
14 | 14 | ||
15 | GET /logout controllers.Authentication.logout | 15 | GET /logout controllers.Authentication.logout |
16 | 16 | ||
17 | GET /signup controllers.Profile.signup | 17 | GET /signup controllers.Profile.signup |
18 | POST /signup controllers.Profile.signupSubmit | 18 | POST /signup controllers.Profile.signupSubmit |
19 | 19 | ||
20 | GET /account controllers.Profile.editProfile | 20 | GET /account controllers.Profile.editProfile |
21 | POST /account controllers.Profile.editProfile | 21 | POST /account controllers.Profile.editProfile |
22 | 22 | ||
23 | GET /profile/:uuid controllers.Profile.viewProfile(uuid) | 23 | GET /profile/:uuid controllers.Profile.viewProfile(uuid) |
24 | 24 | ||
25 | # Internal wallet and transactions (Pépal) | 25 | # Internal wallet and transactions (Pépal) |
26 | GET /summary controllers.Account.summary | 26 | GET /summary controllers.Account.summary |
27 | 27 | ||
28 | GET /deposit controllers.Account.deposit | 28 | GET /deposit controllers.Account.deposit |
29 | POST /deposit controllers.Account.deposit | 29 | POST /deposit controllers.Account.deposit |
30 | 30 | ||
31 | GET /withdraw controllers.Account.withdraw | 31 | GET /withdraw controllers.Account.withdraw |
32 | POST /withdraw controllers.Account.withdraw | 32 | POST /withdraw controllers.Account.withdraw |
33 | 33 | ||
34 | GET /transfer controllers.Account.transfer | 34 | GET /transfer controllers.Account.transfer |
35 | POST /transfer controllers.Account.transfer | 35 | POST /transfer controllers.Account.transfer |
36 | 36 | ||
37 | # Items and sales (eBé) | 37 | # Items and sales (eBé) |
38 | GET /sales controllers.Sale.sales | 38 | GET /sales controllers.Sale.sales |
39 | 39 | ||
40 | GET /item/:uuid controllers.Sale.item(uuid) | 40 | GET /item/:uuid controllers.Sale.item(uuid) |
41 | 41 | ||
42 | GET /item/:uuid/bids controllers.Sale.bids(uuid) | 42 | POST /item/:uuid/bid controllers.Sale.bidSubmit(uuid) |
43 | POST /item/:uuid/bids controllers.Sale.bids(uuid) | ||
44 | 43 | ||
45 | GET /sell controllers.Sale.sell | 44 | GET /sell controllers.Sale.sell |
46 | #GET /sell/:uuid controllers.Sale.sell(uuid) | 45 | #GET /sell/:uuid controllers.Sale.sell(uuid) |
47 | POST /sell controllers.Sale.sellSubmit | 46 | POST /sell controllers.Sale.sellSubmit |
48 | #POST /sell/:uuid controllers.Sale.sell | 47 | #POST /sell/:uuid controllers.Sale.sell |
49 | 48 | ||
50 | # Cheat console | 49 | # Cheat console |
51 | POST /console controllers.Console.console | 50 | POST /console controllers.Console.console |
52 | 51 | ||
53 | # Map static resources from the /public folder to the /assets URL path | 52 | # Map static resources from the /public folder to the /assets URL path |
54 | GET /assets/*file controllers.Assets.at(path="/public", file) | 53 | GET /assets/*file controllers.Assets.at(path="/public", file) |