mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-05 05:57:38 +03:00
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.
This commit is contained in:
parent
56994854d7
commit
d8515d5edd
4 changed files with 16 additions and 37 deletions
|
@ -8,21 +8,14 @@ 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'",
|
||||
});
|
||||
res.status(200).json({
|
||||
status: 'success',
|
||||
message:
|
||||
"make a request. available endpoints are: '/some-slug', '/unanswered/some-slug'",
|
||||
});
|
||||
};
|
||||
|
||||
export const unansweredQuestion = catchAsyncErrors(async (req, res, next) => {
|
||||
const data = await getAnswers(`/unanswered/${req.params.slug}`);
|
||||
res.status(200).json({ status: 'success', data });
|
||||
});
|
||||
|
||||
export const answeredQuestion = catchAsyncErrors(async (req, res, next) => {
|
||||
export const answers = catchAsyncErrors(async (req, res, next) => {
|
||||
const data = await getAnswers(req.params.slug);
|
||||
res.status(200).json({ status: 'success', data });
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue