File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ export default class EppoClient implements IEppoClient {
172172 constructor (
173173 private configurationStore : IConfigurationStore < Flag | ObfuscatedFlag > ,
174174 private configurationRequestParameters ?: FlagConfigurationRequestParameters ,
175- private readonly isObfuscated = false ,
175+ private isObfuscated = false ,
176176 ) { }
177177
178178 public setConfigurationRequestParameters (
@@ -185,6 +185,10 @@ export default class EppoClient implements IEppoClient {
185185 this . configurationStore = configurationStore ;
186186 }
187187
188+ public setIsObfuscated ( isObfuscated : boolean ) {
189+ this . isObfuscated = isObfuscated ;
190+ }
191+
188192 public async fetchFlagConfigurations ( ) {
189193 if ( ! this . configurationRequestParameters ) {
190194 throw new Error (
You can’t perform that action at this time.
0 commit comments