mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 22:03:36 +00:00
adding encrypted export with password functionality to web/organizations (#3858)
This commit is contained in:
@@ -64,7 +64,11 @@ export class OrganizationExportComponent extends ExportComponent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
getExportData() {
|
getExportData() {
|
||||||
return this.exportService.getOrganizationExport(this.organizationId, this.format);
|
if (this.isFileEncryptedExport) {
|
||||||
|
return this.exportService.getPasswordProtectedExport(this.filePassword, this.organizationId);
|
||||||
|
} else {
|
||||||
|
return this.exportService.getOrganizationExport(this.organizationId, this.format);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
getFileName() {
|
getFileName() {
|
||||||
|
|||||||
Reference in New Issue
Block a user