mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-24 05:39:35 +02:00
Small fixes
This commit is contained in:
parent
adc4aaed0f
commit
4510a709d4
2 changed files with 10 additions and 3 deletions
|
@ -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
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue