mirror of
https://github.com/bitwarden/mobile
synced 2025-12-22 03:03:46 +00:00
* [PM-3273] Add property for password set. Add labels. Update sync service. * [PM-3273] Set password needs set in state. Read value on sync and nav to page. * [PM-3273] Add navigation to Set Password on vault landing if needed. * [PM-3273] Update SetPasswordPage copy * [PM-3273] Add ManageResetPassword to Org Permissions, handle it on sync. * [PM-3273] Change user has master password state when set master password is complete. * [PM-3273] Code clean up * [PM-3273] Remove unnecessary property from account profile * [PM-3273] Add check for remembered org identifier * [PM-4679] Added logging calls for future checks. --------- Co-authored-by: Federico Maccaroni <fedemkr@gmail.com>
21 lines
804 B
C#
21 lines
804 B
C#
namespace Bit.Core.Models.Data
|
|
{
|
|
public class Permissions
|
|
{
|
|
public bool AccessBusinessPortal { get; set; }
|
|
public bool AccessEventLogs { get; set; }
|
|
public bool AccessImportExport { get; set; }
|
|
public bool AccessReports { get; set; }
|
|
public bool EditAssignedCollections { get; set; }
|
|
public bool DeleteAssignedCollections { get; set; }
|
|
public bool CreateNewCollections { get; set; }
|
|
public bool EditAnyCollection { get; set; }
|
|
public bool DeleteAnyCollection { get; set; }
|
|
public bool ManageGroups { get; set; }
|
|
public bool ManagePolicies { get; set; }
|
|
public bool ManageSso { get; set; }
|
|
public bool ManageUsers { get; set; }
|
|
public bool ManageResetPassword { get; set; }
|
|
}
|
|
}
|