telemetry module (#934)

* update lockfile

* fix color check

* telemetry

* complete

* Use interval
This commit is contained in:
Philip Okugbe
2025-03-23 13:12:41 +00:00
committed by GitHub
parent 593f41a050
commit 13039cfacc
6 changed files with 140 additions and 0 deletions

View File

@ -182,4 +182,11 @@ export class EnvironmentService {
.toLowerCase();
return isStandalone === 'true';
}
isDisableTelemetry(): boolean {
const disable = this.configService
.get<string>('DISABLE_TELEMETRY', 'false')
.toLowerCase();
return disable === 'true';
}
}