Skip to content

Commit e399063

Browse files
committed
Added a fake post route
1 parent 844c7af commit e399063

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

app.js

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ const AppError = require('./utils/appError');
99
const globalErrorHandler = require('./controllers/errorController');
1010
const productRoutes = require('./routes/productRoutes');
1111
const viewRoutes = require('./routes/viewRoutes');
12+
const productController = require('./controllers/productController');
1213

1314
// Code
1415
const app = express();
@@ -29,6 +30,8 @@ app.use(express.static(path.join(__dirname, 'public')));
2930
app.use('/', viewRoutes);
3031
// Product routes
3132
app.use('/api/v1/products', productRoutes);
33+
// Fake post request
34+
app.post('/api/v1/fakepost', productController.fakePost);
3235

3336
// For undefined routes
3437
app.all('*', (req, res, next) => {

controllers/productController.js

+13
Original file line numberDiff line numberDiff line change
@@ -129,3 +129,16 @@ exports.searchProducts = catchAsync(async (req, res, next) => {
129129
},
130130
});
131131
});
132+
133+
/*
134+
fake post
135+
*/
136+
137+
exports.fakePost = catchAsync(async (req, res, next) => {
138+
const products = await Product.find();
139+
140+
res.status(200).json({
141+
stauts: 'success',
142+
message: 'Successfully posted',
143+
});
144+
});

0 commit comments

Comments
 (0)