quetre/controllers/apiController.js
zyachel d8515d5edd refactor: DRY some code related to answers
as there are two routes for answers(/unanswered/:slug and /:slug), and both contained similar code, reduced controllers(for the routes) in api as well as in views to just one controller handling the logic to fetch data.
2022-05-21 12:58:44 +05:30

28 lines
964 B
JavaScript

////////////////////////////////////////////////////////
// IMPORTS
////////////////////////////////////////////////////////
import catchAsyncErrors from '../utils/catchAsyncErrors.js';
import getAnswers from '../fetchers/getAnswers.js';
////////////////////////////////////////////////////////
// EXPORTS
////////////////////////////////////////////////////////
export const about = (req, res, next) => {
res.status(200).json({
status: 'success',
message:
"make a request. available endpoints are: '/some-slug', '/unanswered/some-slug'",
});
};
export const answers = catchAsyncErrors(async (req, res, next) => {
const data = await getAnswers(req.params.slug);
res.status(200).json({ status: 'success', data });
});
export const unimplemented = (req, res, next) => {
res.status(503).json({
status: 'fail',
message: "This route isn't yet implemented. Check back sometime later!",
});
};