1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

update notification sync logic for collectionids

This commit is contained in:
Kyle Spearrin
2018-08-21 09:25:16 -04:00
parent 75d4db81f7
commit 953970498e
2 changed files with 36 additions and 2 deletions

View File

@@ -38,12 +38,14 @@ export class SyncCipherNotification {
id: string;
userId: string;
organizationId: string;
collectionIds: string[];
revisionDate: Date;
constructor(response: any) {
this.id = response.Id;
this.userId = response.UserId;
this.organizationId = response.OrganizationId;
this.collectionIds = response.CollectionIds;
this.revisionDate = new Date(response.RevisionDate);
}
}