diff options
author | Pacien TRAN-GIRARD | 2015-02-08 22:31:17 +0100 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2015-02-08 22:31:17 +0100 |
commit | 330d7a719800cded4385c633370f782571891f49 (patch) | |
tree | c231da0bec9cf7c70adf6ccd1e9dc6b58d1b0e2d /conf | |
parent | 1ec4626a01da4e21b7e654cb0b6df2f52f6c5d91 (diff) | |
download | minibay-330d7a719800cded4385c633370f782571891f49.tar.gz |
Implement sell action
Diffstat (limited to 'conf')
-rw-r--r-- | conf/routes | 8 |
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) | |||
42 | GET /item/:uuid/bids controllers.Sale.bids(uuid) | 42 | GET /item/:uuid/bids controllers.Sale.bids(uuid) |
43 | POST /item/:uuid/bids controllers.Sale.bids(uuid) | 43 | POST /item/:uuid/bids controllers.Sale.bids(uuid) |
44 | 44 | ||
45 | GET /sell controllers.Sale.sell(itemUuid = null) | 45 | GET /sell controllers.Sale.sell |
46 | GET /sell/:uuid controllers.Sale.sell(uuid) | 46 | #GET /sell/:uuid controllers.Sale.sell(uuid) |
47 | POST /sell controllers.Sale.sell(itemUuid = null) | 47 | POST /sell controllers.Sale.sellSubmit |
48 | POST /sell/:uuid controllers.Sale.sell(uuid) | 48 | #POST /sell/:uuid controllers.Sale.sell |
49 | 49 | ||
50 | # Cheat console | 50 | # Cheat console |
51 | POST /console controllers.Console.console | 51 | POST /console controllers.Console.console |