Rename SIGN_IN_PREFILLED env variable

This commit is contained in:
Charles Bochet
2023-07-31 19:20:11 -07:00
parent 86fee770e1
commit 7a6a75a958
5 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ export class EnvironmentService {
}
isSignInPrefilled(): boolean {
return this.configService.get<boolean>('IS_SIGN_IN_PREFILLED') ?? false;
return this.configService.get<boolean>('SIGN_IN_PREFILLED') ?? false;
}
isTelemetryEnabled(): boolean {

View File

@ -27,7 +27,7 @@ export class EnvironmentVariables {
@CastToBoolean()
@IsOptional()
@IsBoolean()
IS_SIGN_IN_PREFILLED?: boolean;
SIGN_IN_PREFILLED?: boolean;
@CastToBoolean()
@IsOptional()