feat(route): add new route

add /topic/:slug route both in api as well as in view
This commit is contained in:
zyachel 2022-05-22 19:35:02 +05:30
parent 6ad2269951
commit 0a35cdaa15
10 changed files with 490 additions and 4 deletions

View file

@ -3,6 +3,7 @@
////////////////////////////////////////////////////////
import catchAsyncErrors from '../utils/catchAsyncErrors.js';
import getAnswers from '../fetchers/getAnswers.js';
import getTopic from '../fetchers/getTopic.js';
////////////////////////////////////////////////////////
// EXPORTS
@ -20,6 +21,11 @@ export const answers = catchAsyncErrors(async (req, res, next) => {
res.status(200).json({ status: 'success', data });
});
export const topic = catchAsyncErrors(async (req, res, next) => {
const data = await getTopic(req.params.slug);
res.status(200).json({ status: 'success', data });
});
export const unimplemented = (req, res, next) => {
res.status(503).json({
status: 'fail',