dev add vio
Test Workflow / test (push) Successful in 3s

This commit is contained in:
vladp
2026-03-12 15:46:37 +07:00
parent 2ca73e4417
commit 3a477bc2ae
2 changed files with 22 additions and 0 deletions
@@ -14,6 +14,8 @@ import java.util.Optional;
public interface GlobalSearchTaskRepository extends JpaRepository<GlobalSearchTask, String> {
Optional<GlobalSearchTask> findByTaskIdAndUserId(String taskId, Long userId);
Optional<GlobalSearchTask> findByUserIdAndStatus(Long userId, String status);
List<GlobalSearchTask> findByUserIdOrderByCreatedAtDesc(Long userId);
List<GlobalSearchTask> findByUserIdAndCreatedAtAfterOrderByCreatedAtDesc(Long userId, LocalDateTime date);