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

Pushed version 1.6.7

This commit is contained in:
unknown 2021-10-04 12:11:41 +02:00
parent 4252457871
commit 6a6f1750b1
7 changed files with 217 additions and 162 deletions

View file

@ -9,14 +9,14 @@ const getExternalWeather = require('../utils/getExternalWeather');
exports.getWeather = asyncWrapper(async (req, res, next) => {
const weather = await Weather.findAll({
order: [['createdAt', 'DESC']],
limit: 1
limit: 1,
});
res.status(200).json({
success: true,
data: weather
})
})
data: weather,
});
});
// @desc Update weather
// @route GET /api/weather/update
@ -26,6 +26,6 @@ exports.updateWeather = asyncWrapper(async (req, res, next) => {
res.status(200).json({
success: true,
data: weather
})
})
data: weather,
});
});