Please enable JavaScript.
Coggle requires JavaScript to display documents.
T-Shirt Backend - Coggle Diagram
T-Shirt Backend
Controllers
Orders
OrderById :!!:
create
listOrder
UpdateOrderStatus
getOrderSatus
Payment
Category
create
categoryById :star:
READ
UPDATE
REMOVE
getAll
USER
getUserById :star:
read
update
userPurchaseList
pushOrderInPurchaseList
auth
Signup
signin
signout
IsAdmin :!!:
isAuthenticated :!!:
isSignedIn:!!:
Product
Photo :!!:
Main Stock :!!:
create
getProductById :!!:
read
remove
update
last categories
list :question:
Routes
Authetication
Signup-post
Signin-post
singout-get
Product
productId PARAM (parameterExtractor) :star:
/produt/photo/:productId GET
/product/create/:userId POST
/product/:productId GET
/product/:productId/:userId DELETE
/product/:productId/:userId PUT
/products/categories GET
Payment System
Category
/category/create/:userId POST (create)
categoryId PARAM (parameterExtractor) :star:
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 :star:
/order/list/:userId GET
/order/status/:userId GET
/order/:orderId/status/:userId PUT
User
read-get
Update-put
parameterExtracter-params :star:
purchaseList-get
Models
User
Product
Category
Order