1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-22 03:03:46 +00:00

share icon on vault listing

This commit is contained in:
Kyle Spearrin
2017-04-24 15:00:55 -04:00
parent 2d7b33459e
commit 4854b2b1c0
10 changed files with 49 additions and 13 deletions

View File

@@ -11,6 +11,7 @@ namespace Bit.App.Models.Page
public Login(Models.Login login)
{
Id = login.Id;
Shared = !string.IsNullOrWhiteSpace(login.OrganizationId);
FolderId = login.FolderId;
Name = login.Name?.Decrypt(login.OrganizationId);
Username = login.Username?.Decrypt(login.OrganizationId) ?? " ";
@@ -19,6 +20,7 @@ namespace Bit.App.Models.Page
}
public string Id { get; set; }
public bool Shared { get; set; }
public string FolderId { get; set; }
public string Name { get; set; }
public string Username { get; set; }