Please enable JavaScript.
Coggle requires JavaScript to display documents.
Sell Tshirt Backend - Coggle Diagram
Sell Tshirt Backend
Controllers
Payment
Orders
orderById
create
listOrder
updateOrderStaus
getOrderStatus
Category
create
categoryById
read
update
remove
getAll
Users
getUserById
read
update
userPurchaseList
pushOrderInPurchaseList
Product
photo
maintainStock
create
getProductById
read
remove
update
listCategories
list
auth
signup
signin
signout
isAdmin
isAuthenticated
checker for token
Routes
Authendication
signup-post
Signin-post
Signout-get
User
read-get
update-put
parameterExtractor-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
Payment System
Models
User
Product
Category
Order