Compare commits

..

No commits in common. "8a0b75e9ea008ad4d0aee3527982d91f29c59d26" and "1045e497edada22bd71ffafd971fc6f37d05e795" have entirely different histories.

2 changed files with 10 additions and 1 deletions

View file

@ -81,6 +81,7 @@ fastify.addHook('onResponse', async (request, reply) => {
};
try {
<<<<<<< HEAD
await axios.post(
`https://${config['analytics']['plausible_domain']}/api/event/`,
event,
@ -90,8 +91,15 @@ fastify.addHook('onResponse', async (request, reply) => {
'Content-Type': 'application/json',
'User-Agent': userAgent,
},
=======
await axios.post(config['analytics']['plausible_api'], event, {
headers: {
Authorization: `Bearer ${config['analytics']['plausible_token']}`,
'Content-Type': 'application/json',
'User-Agent': userAgent,
>>>>>>> parent of da7134f (chore(server): Changed the name of the keys. Made it easier to change the domain)
},
);
});
} catch (error) {
fastify.log.error('Error sending event to Plausible:', error.message);
}

View file

@ -11,6 +11,7 @@ module.exports = async function metadata(fastify) {
);
return res.status(200).send({
timezone: Intl.DateTimeFormat().resolvedOptions().timeZone,
first_date: first_date.rows[0]?.date
? first_date.rows[0]?.date
: 'None',