diff options
author | Pacien TRAN-GIRARD | 2015-02-08 20:22:09 +0100 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2015-02-08 20:22:09 +0100 |
commit | 1ec4626a01da4e21b7e654cb0b6df2f52f6c5d91 (patch) | |
tree | c87ab8c1a283058461cd5efadaa4892b6aa86e0d /conf | |
parent | 4496e089bca542fc98bfad0e005469211e7cbc1e (diff) | |
download | minibay-1ec4626a01da4e21b7e654cb0b6df2f52f6c5d91.tar.gz |
Define routes to be done
Diffstat (limited to 'conf')
-rw-r--r-- | conf/routes | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/conf/routes b/conf/routes index 06081d1..c245163 100644 --- a/conf/routes +++ b/conf/routes | |||
@@ -17,17 +17,22 @@ GET /logout controllers.Authentication.logout | |||
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 /profile controllers.Application.index | 20 | GET /account controllers.Profile.editProfile |
21 | #POST /profile controllers.Application.index | 21 | POST /account controllers.Profile.editProfile |
22 | |||
23 | GET /profile/:uuid controllers.Profile.viewProfile(uuid) | ||
22 | 24 | ||
23 | # Internal wallet and transactions (Pépal) | 25 | # Internal wallet and transactions (Pépal) |
24 | GET /account controllers.Account.summary | 26 | GET /summary controllers.Account.summary |
27 | |||
28 | GET /deposit controllers.Account.deposit | ||
29 | POST /deposit controllers.Account.deposit | ||
25 | 30 | ||
26 | #GET /deposit controllers.Application.index | 31 | GET /withdraw controllers.Account.withdraw |
27 | #POST /deposit controllers.Application.index | 32 | POST /withdraw controllers.Account.withdraw |
28 | 33 | ||
29 | #GET /withdraw controllers.Application.index | 34 | GET /transfer controllers.Account.transfer |
30 | #POST /withdraw controllers.Application.index | 35 | POST /transfer controllers.Account.transfer |
31 | 36 | ||
32 | # Items and sales (eBé) | 37 | # Items and sales (eBé) |
33 | GET /sales controllers.Sale.sales | 38 | GET /sales controllers.Sale.sales |