1
0
mirror of https://github.com/bitwarden/web synced 2025-12-11 05:43:16 +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) { async load(filter: (cipher: CipherView) => boolean = null) {
if (!this.organization.canManageAllCollections) { if (this.organization.canManageAllCollections) {
await super.load(filter, this.deleted); this.accessEvents = this.organization.useEvents;
return; 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.searchService.indexCiphers(this.organization.id, this.allCiphers);
await this.applyFilter(filter); await this.applyFilter(filter);
this.loaded = true; this.loaded = true;
@@ -63,7 +63,7 @@ export class CiphersComponent extends BaseCiphersComponent {
} }
async search(timeout: number = null) { async search(timeout: number = null) {
super.search(timeout, this.allCiphers); await super.search(timeout, this.allCiphers);
} }
events(c: CipherView) { events(c: CipherView) {
this.onEventsClicked.emit(c); this.onEventsClicked.emit(c);