Please enable JavaScript.
Coggle requires JavaScript to display documents.
Sell T-shirt BackEnd - Coggle Diagram
Sell T-shirt BackEnd
Models
User
Product
category
Order
Controllers
product
photo
maintainStock
create
getProductById
read
remove
update
listCategories
list
order
orderById
create
listOrder
updateOrderStaus
getOrderStatus
payment
category
create
categoryById
read
update
remove
getAll
user
getUserById
read
update
userPurchaseList
pushOrderInPurchaseList
Routes
User
read-get
update-put
parameterExtracter-params
purchaseList-get
Category
/category/create/:userId POST (create)
categoryId PARAM (parameterExtractor)
/category/:categoryId GET (read)
/category/:categoryId/:userId PUT (update)
/category/:categoryId/:userId DELETE (remove)
/categories GET (getAll)
Order
/order/create/:userId POST (create)
orderById PARAMS
/order/list/:userId GET
/order/status/:userId GET
/order/:orderId/status/:userId PUT
Authentication
signup-post
signin-post
signout-get
Product
ProductId PARAM
/product/photo/:productid GET
/product/create/:userid POST
/product/:productid GET
/product/:productid/:userid PUT
/product/:productid/:userid DELETE
/product/categories GET
Payment