mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-22 04:49:36 +02:00
Split remaining controllers into separate files. Added iOS homescreen icon. Removed additional logging from weather module.
This commit is contained in:
parent
88694c7e27
commit
4ed29fe276
32 changed files with 418 additions and 312 deletions
19
controllers/weather/getWather.js
Normal file
19
controllers/weather/getWather.js
Normal file
|
@ -0,0 +1,19 @@
|
|||
const asyncWrapper = require('../../middleware/asyncWrapper');
|
||||
const Weather = require('../../models/Weather');
|
||||
|
||||
// @desc Get latest weather status
|
||||
// @route GET /api/weather
|
||||
// @access Public
|
||||
const getWeather = asyncWrapper(async (req, res, next) => {
|
||||
const weather = await Weather.findAll({
|
||||
order: [['createdAt', 'DESC']],
|
||||
limit: 1,
|
||||
});
|
||||
|
||||
res.status(200).json({
|
||||
success: true,
|
||||
data: weather,
|
||||
});
|
||||
});
|
||||
|
||||
module.exports = getWeather;
|
Loading…
Add table
Add a link
Reference in a new issue