Skip to content

Commit 504b1c3

Browse files
committed
Merge branch 'release/moov-1.8.37'
2 parents 095a14a + e3e2c96 commit 504b1c3

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

src/NoFrixion.MoneyMoov/Models/Rules/Rule.cs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,26 @@ public class Rule : IValidatableObject, IWebhookPayload
9797

9898
public PaymentAccount? Account { get; set; } = null!;
9999

100+
/// <summary>
101+
/// The number of authorisers required for this rule.
102+
/// </summary>
103+
public int AuthorisersRequiredCount { get; set; }
104+
105+
/// <summary>
106+
/// The number of distinct authorisers that have authorised the rule.
107+
/// </summary>
108+
public int AuthorisersCompletedCount { get; set; }
109+
110+
/// <summary>
111+
/// True if the rule can be authorised by the user who loaded it.
112+
/// </summary>
113+
public bool CanAuthorise { get; set; }
114+
115+
/// <summary>
116+
/// True if the current user has authorised.
117+
/// </summary>
118+
public bool HasCurrentUserAuthorised { get; set; }
119+
100120
/// <summary>
101121
/// The approval hash is used when approving the rule and to detect when critical
102122
/// fields change.

src/NoFrixion.MoneyMoov/NoFrixion.MoneyMoov.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<AssemblyVersion>1.8.36.0</AssemblyVersion>
8-
<FileVersion>1.8.36.0</FileVersion>
7+
<AssemblyVersion>1.8.37.0</AssemblyVersion>
8+
<FileVersion>1.8.37.0</FileVersion>
99
<GenerateDocumentationFile>True</GenerateDocumentationFile>
1010
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
1111
<NoWarn>$(NoWarn);1591</NoWarn>

0 commit comments

Comments
 (0)