From a45c77bda9662eb3a9c043774e003654d9749563 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 9 Jul 2018 17:07:13 -0400 Subject: [PATCH] aot compilation fixes --- .../organizations/manage/collections.component.ts | 12 ++++++++++++ src/app/organizations/manage/people.component.html | 2 +- src/app/organizations/manage/people.component.ts | 12 ++++++++++++ src/app/vault/share.component.ts | 2 +- 4 files changed, 26 insertions(+), 2 deletions(-) diff --git a/src/app/organizations/manage/collections.component.ts b/src/app/organizations/manage/collections.component.ts index 782f192a47..edf0fa3cff 100644 --- a/src/app/organizations/manage/collections.component.ts +++ b/src/app/organizations/manage/collections.component.ts @@ -39,4 +39,16 @@ export class CollectionsComponent implements OnInit { this.collections = await this.collectionService.decryptMany(collections); this.loading = false; } + + edit(collection: CollectionView) { + // + } + + add() { + this.edit(null); + } + + async delete(collection: CollectionView) { + // + } } diff --git a/src/app/organizations/manage/people.component.html b/src/app/organizations/manage/people.component.html index 837f9ac415..24799049bc 100644 --- a/src/app/organizations/manage/people.component.html +++ b/src/app/organizations/manage/people.component.html @@ -18,7 +18,7 @@ - diff --git a/src/app/organizations/manage/people.component.ts b/src/app/organizations/manage/people.component.ts index 43cf189aaa..b48c36887c 100644 --- a/src/app/organizations/manage/people.component.ts +++ b/src/app/organizations/manage/people.component.ts @@ -43,4 +43,16 @@ export class PeopleComponent implements OnInit { this.users = users; this.loading = false; } + + edit(user: OrganizationUserUserDetailsResponse) { + // + } + + invite() { + // + } + + async remove(user: OrganizationUserUserDetailsResponse) { + // + } } diff --git a/src/app/vault/share.component.ts b/src/app/vault/share.component.ts index 586fc044ed..321518cfb7 100644 --- a/src/app/vault/share.component.ts +++ b/src/app/vault/share.component.ts @@ -91,7 +91,7 @@ export class ShareComponent implements OnInit, OnDestroy { (c as any).checked = select == null ? !(c as any).checked : select; } - selectAll(select: false) { + selectAll(select: boolean) { const collections = select ? this.collections : this.writeableCollections; collections.forEach((c) => this.check(c, select)); }