mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-06 06:27:39 +03:00
feat(route): add new route
add /topic/:slug route both in api as well as in view
This commit is contained in:
parent
6ad2269951
commit
0a35cdaa15
10 changed files with 490 additions and 4 deletions
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue