1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-23 19:53:50 +00:00

collection service

This commit is contained in:
Kyle Spearrin
2019-04-17 09:07:51 -04:00
parent 18f04af051
commit 6cab060509
3 changed files with 253 additions and 6 deletions

View File

@@ -33,9 +33,9 @@ namespace Bit.Core.Models.Domain
public string ExternalId { get; set; }
public bool ReadOnly { get; set; }
public Task<CollectionView> DecryptAsync(string orgId)
public Task<CollectionView> DecryptAsync()
{
return DecryptObjAsync(new CollectionView(this), this, new HashSet<string> { "Name" }, orgId);
return DecryptObjAsync(new CollectionView(this), this, new HashSet<string> { "Name" }, OrganizationId);
}
}
}