1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-24 05:39:35 +02:00

Small fixes

This commit is contained in:
unknown 2021-05-17 18:26:01 +02:00
parent adc4aaed0f
commit 4510a709d4
2 changed files with 10 additions and 3 deletions

View file

@ -20,7 +20,7 @@ exports.createPair = asyncWrapper(async (req, res, next) => {
exports.getAllPairs = asyncWrapper(async (req, res, next) => {
const pairs = await Config.findAll();
res.status(201).json({
res.status(200).json({
success: true,
data: pairs
})
@ -38,7 +38,7 @@ exports.getSinglePair = asyncWrapper(async (req, res, next) => {
return next(new ErrorResponse(`Key ${req.params.key} was not found`, 404));
}
res.status(201).json({
res.status(200).json({
success: true,
data: pair
})