Please enable JavaScript.
Coggle requires JavaScript to display documents.
Gfonix-Backend - Coggle Diagram
Gfonix-Backend
Routes
Authentication
signin-post
signup-post
signout-get
User
read-get
update-put
parameterExtractor-params :star:
getPrrchaseList-get
Product
productId parameter (Parameter Extractor) :star:
/product/photo/:productId GET
/product/create/:userId POST
/product/:productId GET
/product/:productId/:userId DELETE
/product/:productId/:userId PUT
products/categories GET
Category
/category/create/:userID POST
categoryId PARAM :star:
/category/:categoryId GET
/category/:categoryId/:userId PUT
/category/:categoryId/:userId DELETE
/categories GET (GET ALL)
Order
/order/create/:userId POST
orderById PARAMS :star:
/order/list/:userId GET
/order/status/:userId GET
/order/:orderId/status/:userId PUT
PAYMENT
Controllers
User
getUserById :star:
read
update
userPurchaseList
pushOrderInPurchaseList
Auth
signUp
signIn
signOut
isAdmin :!!:
isAuthenticated :!!:
checkrForToken :!!:
Category
create
categoryById :star:
read
update
remove
getAll
Product
photo :!!:
maintainStock :!!:
create
getProductById :!!:
read
remove
update
listCategories
list :question:
order
orderById :!!:
create
listOrder
getOrderStatus
updateOrderStatus
PAYMENT
Models
user
product
Category
order