mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-22 16:29:09 +01:00
adding encrypted export with password functionality to web/organizations (#3858)
This commit is contained in:
parent
6512f21683
commit
836dba3519
@ -64,8 +64,12 @@ export class OrganizationExportComponent extends ExportComponent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
getExportData() {
|
getExportData() {
|
||||||
|
if (this.isFileEncryptedExport) {
|
||||||
|
return this.exportService.getPasswordProtectedExport(this.filePassword, this.organizationId);
|
||||||
|
} else {
|
||||||
return this.exportService.getOrganizationExport(this.organizationId, this.format);
|
return this.exportService.getOrganizationExport(this.organizationId, this.format);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
getFileName() {
|
getFileName() {
|
||||||
return super.getFileName("org");
|
return super.getFileName("org");
|
||||||
|
Loading…
Reference in New Issue
Block a user