poi for proxies

This commit is contained in:
orangecoding
2026-05-25 11:54:49 +02:00
parent 996b841cfb
commit 1a210d7c1c
3 changed files with 5 additions and 1 deletions

View File

@@ -10,5 +10,6 @@ export const TRACKING_POIS = {
JOBS_TABLE_VIEW: 'JOBS_TABLE_VIEW',
LISTING_TABLE_VIEW: 'LISTING_TABLE_VIEW',
BASE_URL_SETTING: 'BASE_URL_SETTING',
SET_PROXY_SETTING: 'SET_PROXY_SETTING',
DETECTED_AS_BOT: 'DETECTED_AS_BOT',
};

View File

@@ -44,6 +44,9 @@ export default async function generalSettingsPlugin(fastify) {
if (appSettings.baseUrl != null) {
await trackPoi(TRACKING_POIS.BASE_URL_SETTING);
}
if (appSettings.proxyUrl != null) {
await trackPoi(TRACKING_POIS.SET_PROXY_SETTING);
}
} catch (err) {
logger.error(err);
return reply.code(500).send({ error: 'Error while trying to write settings.' });

View File

@@ -1,6 +1,6 @@
{
"name": "fredy",
"version": "22.1.0",
"version": "22.1.1",
"description": "[F]ind [R]eal [E]states [d]amn eas[y].",
"scripts": {
"prepare": "husky",