Skip to content

Commit a75a960

Browse files
sipsorceryCopilot
andauthored
Moov4690 userrole authorisation (#632)
* wip: role user authorisation. * Update src/NoFrixion.MoneyMoov/Models/Roles/RoleUser.cs Co-authored-by: Copilot <[email protected]> --------- Co-authored-by: Copilot <[email protected]>
1 parent dbe1433 commit a75a960

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/NoFrixion.MoneyMoov/Models/Roles/RoleUser.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ public class RoleUser
2727

2828
public DateTimeOffset LastUpdated { get; set; }
2929

30+
/// <summary>
31+
/// Indicates whether the role user is enabled.
32+
/// An enabled role user is authorized to perform actions associated with their assigned role.
33+
/// If set to <c>false</c>, the user is considered disabled and will not be granted authorization for role-based actions.
34+
/// </summary>
35+
public bool IsEnabled { get; set; }
36+
3037
public List<RoleUserAccount>? Accounts { get; set; }
3138

3239
public List<RoleUserMerchant>? Merchants { get; set; }

0 commit comments

Comments
 (0)