1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-07 11:03:54 +00:00

optional params

This commit is contained in:
Kyle Spearrin
2019-04-16 23:31:05 -04:00
parent 98291caf76
commit 4b3bae5797
4 changed files with 265 additions and 6 deletions

View File

@@ -24,9 +24,9 @@ namespace Bit.Core.Models.Domain
public CipherString Name { get; set; }
public DateTime RevisionDate { get; set; }
public Task<FolderView> DecryptAsync(string orgId)
public Task<FolderView> DecryptAsync()
{
return DecryptObjAsync(new FolderView(this), this, new HashSet<string> { "Name" }, orgId);
return DecryptObjAsync(new FolderView(this), this, new HashSet<string> { "Name" }, null);
}
}
}