aboutsummaryrefslogtreecommitdiff
path: root/conf/routes
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2015-02-08 22:31:17 +0100
committerPacien TRAN-GIRARD2015-02-08 22:31:17 +0100
commit330d7a719800cded4385c633370f782571891f49 (patch)
treec231da0bec9cf7c70adf6ccd1e9dc6b58d1b0e2d /conf/routes
parent1ec4626a01da4e21b7e654cb0b6df2f52f6c5d91 (diff)
downloadminibay-330d7a719800cded4385c633370f782571891f49.tar.gz
Implement sell action
Diffstat (limited to 'conf/routes')
-rw-r--r--conf/routes8
1 files changed, 4 insertions, 4 deletions
diff --git a/conf/routes b/conf/routes
index c245163..903480d 100644
--- a/conf/routes
+++ b/conf/routes
@@ -42,10 +42,10 @@ GET /item/:uuid controllers.Sale.item(uuid)
42GET /item/:uuid/bids controllers.Sale.bids(uuid) 42GET /item/:uuid/bids controllers.Sale.bids(uuid)
43POST /item/:uuid/bids controllers.Sale.bids(uuid) 43POST /item/:uuid/bids controllers.Sale.bids(uuid)
44 44
45GET /sell controllers.Sale.sell(itemUuid = null) 45GET /sell controllers.Sale.sell
46GET /sell/:uuid controllers.Sale.sell(uuid) 46#GET /sell/:uuid controllers.Sale.sell(uuid)
47POST /sell controllers.Sale.sell(itemUuid = null) 47POST /sell controllers.Sale.sellSubmit
48POST /sell/:uuid controllers.Sale.sell(uuid) 48#POST /sell/:uuid controllers.Sale.sell
49 49
50# Cheat console 50# Cheat console
51POST /console controllers.Console.console 51POST /console controllers.Console.console