Added warning dialog for log out action (#438)
This commit is contained in:
parent
8c29425935
commit
9a040644bf
|
@ -128,6 +128,16 @@ export class SettingsComponent implements OnInit {
|
||||||
}
|
}
|
||||||
|
|
||||||
async saveVaultTimeoutOptions() {
|
async saveVaultTimeoutOptions() {
|
||||||
|
if (this.vaultTimeoutAction === 'logOut') {
|
||||||
|
const confirmed = await this.platformUtilsService.showDialog(
|
||||||
|
this.i18nService.t('vaultTimeoutLogOutConfirmation'),
|
||||||
|
this.i18nService.t('vaultTimeoutLogOutConfirmationTitle'),
|
||||||
|
this.i18nService.t('yes'), this.i18nService.t('cancel'), 'warning');
|
||||||
|
if (!confirmed) {
|
||||||
|
this.vaultTimeoutAction = 'lock';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
await this.vaultTimeoutService.setVaultTimeoutOptions(this.vaultTimeout != null ? this.vaultTimeout : null,
|
await this.vaultTimeoutService.setVaultTimeoutOptions(this.vaultTimeout != null ? this.vaultTimeout : null,
|
||||||
this.vaultTimeoutAction);
|
this.vaultTimeoutAction);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1298,5 +1298,11 @@
|
||||||
"lock": {
|
"lock": {
|
||||||
"message": "Lock",
|
"message": "Lock",
|
||||||
"description": "Verb form: to make secure or inaccesible by"
|
"description": "Verb form: to make secure or inaccesible by"
|
||||||
|
},
|
||||||
|
"vaultTimeoutLogOutConfirmation": {
|
||||||
|
"message": "Logging out will remove all access to your vault and requires online authentication after the timeout period. Are you sure you want to use this setting?"
|
||||||
|
},
|
||||||
|
"vaultTimeoutLogOutConfirmationTitle": {
|
||||||
|
"message": "Timeout Action Confirmation"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue