forked from Yara724/api
YARA-1069
This commit is contained in:
@@ -3748,6 +3748,12 @@ export class ExpertClaimService {
|
||||
(item) => item.unifiedFileStatus === query.unifiedStatus,
|
||||
);
|
||||
}
|
||||
const { fromDate, toDate } = parseListDateRange(query.startDate, query.endDate);
|
||||
if (fromDate || toDate) {
|
||||
filtered = filtered.filter((item) =>
|
||||
isInListDateRange(item.createdAt, fromDate, toDate),
|
||||
);
|
||||
}
|
||||
const paged = applyListQueryV2(
|
||||
filtered,
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user