-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathProducts.js
24 lines (20 loc) · 929 Bytes
/
Products.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const express = require('express');
const { createProduct, fetchAllProducts, fetchProductById, updateProduct } = require('../controller/Product');
const { Product } = require('../model/Product');
const router = express.Router();
// /products is already added in base path
router.post('/', createProduct)
.get('/', fetchAllProducts)
.get('/:id', fetchProductById)
.patch('/:id', updateProduct)
// .get('/update/test',async(req,res)=>{
// // For adding discountPrice to existing data : delete this code after use
// const products = await Product.find({});
// for(let product of products){
// product.discountPrice = Math.round(product.price*(1-product.discountPercentage/100))
// await product.save()
// console.log(product.title+ ' updated')
// }
// res.send('ok')
// })
exports.router = router;