1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-23 03:33:54 +00:00

Disable Private Vault Export Policy (#371)

This commit is contained in:
Oscar Hinton
2021-09-15 15:57:43 +02:00
committed by GitHub
parent 4933de688d
commit 8690f51e2f
5 changed files with 16 additions and 6 deletions

View File

@@ -424,7 +424,7 @@ export class VaultProgram extends Program {
})
.action(async (password, options) => {
await this.exitIfLocked();
const command = new ExportCommand(this.main.cryptoService, this.main.exportService);
const command = new ExportCommand(this.main.cryptoService, this.main.exportService, this.main.policyService);
const response = await command.run(password, options);
this.processResponse(response);
});