1
0
mirror of https://github.com/bitwarden/web synced 2025-12-06 00:03:28 +00:00

Set search index for limited collection org users (#983)

This commit is contained in:
Matt Gibson
2021-05-19 11:11:11 -05:00
committed by GitHub
parent 45c31aa089
commit 1c5ce23d35

View File

@@ -42,12 +42,12 @@ export class CiphersComponent extends BaseCiphersComponent {
}
async load(filter: (cipher: CipherView) => boolean = null) {
if (!this.organization.canManageAllCollections) {
await super.load(filter, this.deleted);
return;
if (this.organization.canManageAllCollections) {
this.accessEvents = this.organization.useEvents;
this.allCiphers = await this.cipherService.getAllFromApiForOrganization(this.organization.id);
} else {
this.allCiphers = (await this.cipherService.getAllDecrypted()).filter(c => c.organizationId === this.organization.id);
}
this.accessEvents = this.organization.useEvents;
this.allCiphers = await this.cipherService.getAllFromApiForOrganization(this.organization.id);
await this.searchService.indexCiphers(this.organization.id, this.allCiphers);
await this.applyFilter(filter);
this.loaded = true;
@@ -63,7 +63,7 @@ export class CiphersComponent extends BaseCiphersComponent {
}
async search(timeout: number = null) {
super.search(timeout, this.allCiphers);
await super.search(timeout, this.allCiphers);
}
events(c: CipherView) {
this.onEventsClicked.emit(c);