feat(centralui): Bundle Import filter on ConfigurationAuditLog page

This commit is contained in:
Joseph Doherty
2026-05-24 05:44:21 -04:00
parent 39f994f9bc
commit ef025a325d
4 changed files with 79 additions and 0 deletions
@@ -104,6 +104,7 @@ public class CentralUiRepository : ICentralUiRepository
DateTimeOffset? to = null,
string? entityId = null,
string? entityName = null,
Guid? bundleImportId = null,
int page = 1,
int pageSize = 50,
CancellationToken cancellationToken = default)
@@ -131,6 +132,9 @@ public class CentralUiRepository : ICentralUiRepository
if (!string.IsNullOrWhiteSpace(entityName))
query = query.Where(a => a.EntityName.Contains(entityName));
if (bundleImportId is Guid bundleId)
query = query.Where(a => a.BundleImportId == bundleId);
var totalCount = await query.CountAsync(cancellationToken);
var entries = await query