Skip to content

Commit 3b49355

Browse files
Rodrigo Leoteclaude
andcommitted
Include reviewed transactions in transfer candidates
Review status and transfer linking are orthogonal concepts — a transaction can be correctly categorized (reviewed) and still be one leg of a transfer. This was preventing auto-reviewed Akahu imports from appearing as candidates. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 25c400e commit 3b49355

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Core/MyMascada.Application/Features/Transactions/Queries/GetPotentialTransfersQuery.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ public class GetPotentialTransfersQuery : IRequest<PotentialTransfersResponse>
2424
public int DateToleranceDays { get; set; } = 3;
2525

2626
/// <summary>
27-
/// Include transactions that are already reviewed (default: false)
27+
/// Include transactions that are already reviewed (default: true)
2828
/// </summary>
29-
public bool IncludeReviewed { get; set; } = false;
29+
public bool IncludeReviewed { get; set; } = true;
3030

3131
/// <summary>
3232
/// Minimum confidence score for potential matches (default: 0.5)

0 commit comments

Comments
 (0)