Add file info public
Test Workflow / test (push) Has been cancelled

This commit is contained in:
2026-06-02 15:53:03 +07:00
parent 3b04cc8907
commit 8bad5a4619
@@ -236,7 +236,7 @@ public class ModerationService {
Pageable pageable = PageRequest.of(page, size, Sort.by(Sort.Direction.fromString(sortDirection), sortBy));
return isAppeal ? fileEntityRepository.findByStatusInAndSortedWithAppeal(statuses, pageable):
return isAppeal != null ? fileEntityRepository.findByStatusInAndSortedWithAppeal(statuses, pageable):
fileEntityRepository.findByStatusInAndSorted(statuses, pageable);
}