Skip to content

Commit ff523d7

Browse files
committed
MOOV-4708: Add Events to Roles
1 parent 01d14c1 commit ff523d7

File tree

2 files changed

+6
-13
lines changed

2 files changed

+6
-13
lines changed

src/NoFrixion.MoneyMoov/Enums/RoleEventTypeEnum.cs

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,15 @@ public enum RoleEventTypeEnum
2424

2525
Created = 1,
2626

27-
Authorised = 2,
27+
Edited = 2,
2828

29-
Rejected = 3,
29+
Archived = 3,
3030

31-
Edited = 4,
31+
Unarchived = 4,
3232

33-
Archived = 6,
33+
AssignedToUser = 5,
3434

35-
Unarchived = 7,
35+
RemovedFromUser = 6,
3636

37-
AssignedToUser = 8,
38-
39-
RemovedFromUser = 9,
37+
UpdatedUserAssignment = 7
4038
}

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,6 @@ public class RoleEvent
6060
/// The client session timeout seconds the role had at the time of the event.
6161
/// </summary>
6262
public int? ClientSessionTimeoutSeconds { get; set; }
63-
64-
/// <summary>
65-
/// If the role was a system role at the time of the event.
66-
/// </summary>
67-
public bool? IsSystem { get; set; }
6863

6964
/// <summary>
7065
/// For <see cref="RoleEventTypeEnum.AssignedToUser"/> and <see cref="RoleEventTypeEnum.RemovedFromUser"/> event types.

0 commit comments

Comments
 (0)