mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-04 21:47:38 +03:00
initial commit
This commit is contained in:
commit
bf4ee2c3cf
54 changed files with 7101 additions and 0 deletions
35
controllers/apiController.js
Normal file
35
controllers/apiController.js
Normal file
|
@ -0,0 +1,35 @@
|
|||
////////////////////////////////////////////////////////
|
||||
// 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 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) => {
|
||||
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!",
|
||||
});
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue