mirror of
https://github.com/bitwarden/mobile
synced 2026-01-07 11:03:54 +00:00
optional params
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user