dont set default lock option in dev
This commit is contained in:
parent
9a70c0e8a7
commit
17ae441c22
|
@ -78,7 +78,7 @@ const stateService = new StateService();
|
||||||
const broadcasterService = new BroadcasterService();
|
const broadcasterService = new BroadcasterService();
|
||||||
const messagingService = new BroadcasterMessagingService(broadcasterService);
|
const messagingService = new BroadcasterMessagingService(broadcasterService);
|
||||||
const platformUtilsService = new WebPlatformUtilsService(i18nService);
|
const platformUtilsService = new WebPlatformUtilsService(i18nService);
|
||||||
const storageService: StorageServiceAbstraction = new HtmlStorageService();
|
const storageService: StorageServiceAbstraction = new HtmlStorageService(platformUtilsService);
|
||||||
const secureStorageService: StorageServiceAbstraction = new MemoryStorageService();
|
const secureStorageService: StorageServiceAbstraction = new MemoryStorageService();
|
||||||
const cryptoFunctionService: CryptoFunctionServiceAbstraction = new WebCryptoFunctionService(window,
|
const cryptoFunctionService: CryptoFunctionServiceAbstraction = new WebCryptoFunctionService(window,
|
||||||
platformUtilsService);
|
platformUtilsService);
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
||||||
import { StorageService } from 'jslib/abstractions/storage.service';
|
import { StorageService } from 'jslib/abstractions/storage.service';
|
||||||
import { ConstantsService } from 'jslib/services';
|
import { ConstantsService } from 'jslib/services';
|
||||||
|
|
||||||
|
@ -7,9 +8,11 @@ export class HtmlStorageService implements StorageService {
|
||||||
ConstantsService.localeKey, ConstantsService.lockOptionKey]);
|
ConstantsService.localeKey, ConstantsService.lockOptionKey]);
|
||||||
private localStorageStartsWithKeys = ['twoFactorToken_'];
|
private localStorageStartsWithKeys = ['twoFactorToken_'];
|
||||||
|
|
||||||
|
constructor(private platformUtilsService: PlatformUtilsService) { }
|
||||||
|
|
||||||
async init() {
|
async init() {
|
||||||
const lockOption = await this.get<number>(ConstantsService.lockOptionKey);
|
const lockOption = await this.get<number>(ConstantsService.lockOptionKey);
|
||||||
if (lockOption == null) {
|
if (lockOption == null && !this.platformUtilsService.isDev()) {
|
||||||
await this.save(ConstantsService.lockOptionKey, 15);
|
await this.save(ConstantsService.lockOptionKey, 15);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue