Skip to content

Commit

Permalink
revert back to false for is form a a mat flag - records with null isf…
Browse files Browse the repository at this point in the history
…ormat were historical onces created before IsFormAMat funcntionality
  • Loading branch information
paullocknimble committed Nov 25, 2024
1 parent 3e72dd3 commit 20623cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ private static IQueryable<Project> FilterGroupedProjects(IQueryable<Project> que
string.IsNullOrEmpty(p.Details.SchoolPhase) ||
string.IsNullOrEmpty(p.Details.SchoolType) ||
// we need projects that have a trust associated that aren't form a mat that require a trust ukprn
(p.Details.TrustUkprn == null && p.Details.IsFormAMat == null && p.Details.TrustReferenceNumber != null)
(p.Details.TrustUkprn == null && p.Details.IsFormAMat == false && p.Details.TrustReferenceNumber != null)
&& p.DeletedAt == null)
.ToListAsync();

Expand Down

0 comments on commit 20623cc

Please sign in to comment.