aboutsummaryrefslogtreecommitdiff
path: root/conf/routes
diff options
context:
space:
mode:
Diffstat (limited to 'conf/routes')
-rw-r--r--conf/routes51
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
7GET / controllers.Application.index 7GET / controllers.Application.index
8GET /terms controllers.Application.terms 8GET /terms controllers.Application.terms
9GET /privacy controllers.Application.privacy 9GET /privacy controllers.Application.privacy
10 10
11# User account 11# User account
12GET /login controllers.Authentication.login 12GET /login controllers.Authentication.login
13POST /login controllers.Authentication.loginSubmit 13POST /login controllers.Authentication.loginSubmit
14 14
15GET /logout controllers.Authentication.logout 15GET /logout controllers.Authentication.logout
16 16
17GET /signup controllers.Profile.signup 17GET /signup controllers.Profile.signup
18POST /signup controllers.Profile.signupSubmit 18POST /signup controllers.Profile.signupSubmit
19 19
20GET /account controllers.Profile.editProfile 20GET /account controllers.Profile.editProfile
21POST /account controllers.Profile.editProfile 21POST /account controllers.Profile.editProfile
22 22
23GET /profile/:uuid controllers.Profile.viewProfile(uuid) 23GET /profile/:uuid controllers.Profile.viewProfile(uuid)
24 24
25# Internal wallet and transactions (Pépal) 25# Internal wallet and transactions (Pépal)
26GET /summary controllers.Account.summary 26GET /summary controllers.Account.summary
27 27
28GET /deposit controllers.Account.deposit 28GET /deposit controllers.Account.deposit
29POST /deposit controllers.Account.deposit 29POST /deposit controllers.Account.deposit
30 30
31GET /withdraw controllers.Account.withdraw 31GET /withdraw controllers.Account.withdraw
32POST /withdraw controllers.Account.withdraw 32POST /withdraw controllers.Account.withdraw
33 33
34GET /transfer controllers.Account.transfer 34GET /transfer controllers.Account.transfer
35POST /transfer controllers.Account.transfer 35POST /transfer controllers.Account.transfer
36 36
37# Items and sales (eBé) 37# Items and sales (eBé)
38GET /sales controllers.Sale.sales 38GET /sales controllers.Sale.sales
39 39
40GET /item/:uuid controllers.Sale.item(uuid) 40GET /item/:uuid controllers.Sale.item(uuid)
41 41
42GET /item/:uuid/bids controllers.Sale.bids(uuid) 42POST /item/:uuid/bid controllers.Sale.bidSubmit(uuid)
43POST /item/:uuid/bids controllers.Sale.bids(uuid)
44 43
45GET /sell controllers.Sale.sell 44GET /sell controllers.Sale.sell
46#GET /sell/:uuid controllers.Sale.sell(uuid) 45#GET /sell/:uuid controllers.Sale.sell(uuid)
47POST /sell controllers.Sale.sellSubmit 46POST /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
51POST /console controllers.Console.console 50POST /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
54GET /assets/*file controllers.Assets.at(path="/public", file) 53GET /assets/*file controllers.Assets.at(path="/public", file)