Compare commits

..

No commits in common. "1045e497edada22bd71ffafd971fc6f37d05e795" and "5387a91a2f3574645667a85690fc76a5d0498809" have entirely different histories.

View file

@ -3,25 +3,16 @@ const config = require('../../shared/config/src/main.js')();
module.exports = async function metadata(fastify) {
fastify.get('/api/metadata/', async function (req, res) {
const first_date = await pool.query(
'SELECT * FROM currency ORDER BY date LIMIT 1',
);
const last_date = await pool.query(
'SELECT * FROM currency ORDER BY date DESC LIMIT 1',
);
const first_date = await pool.query('SELECT * FROM currency ORDER BY date LIMIT 1');
const last_date = await pool.query('SELECT * FROM currency ORDER BY date DESC LIMIT 1');
return res.status(200).send({
timezone: Intl.DateTimeFormat().resolvedOptions().timeZone,
first_date: first_date.rows[0]?.date
? first_date.rows[0]?.date
: 'None',
last_date: last_date.rows[0]?.date
? last_date.rows[0]?.date
: 'None',
currencies: {
crypto: config['currency']['crypto'],
fiat: config['currency']['fiat'],
},
});
'first_date': first_date.rows[0]?.date ? first_date.rows[0]?.date : 'None',
'last_date': last_date.rows[0]?.date ? last_date.rows[0]?.date : 'None',
'currencies': {
'crypto': config['currency']['crypto'],
'fiat': config['currency']['fiat'],
}
})
});
};
}