dev add method link
Test Workflow / test (push) Has been cancelled

This commit is contained in:
2026-05-05 14:53:25 +07:00
parent d98a5ce692
commit d2b94802de
2 changed files with 8 additions and 7 deletions
@@ -36,7 +36,7 @@ public interface DockViewRepository extends JpaRepository<DockView, Long> {
"MIN(dv.createdAt) as firstViewDate " +
"FROM DockView dv " +
"WHERE dv.fileId IN :fileIds")
Optional<Object[]> findTotalViewsStatsByFileIds(@Param("fileIds") List<String> fileIds);
List<Object[]> findTotalViewsStatsByFileIds(@Param("fileIds") List<String> fileIds);
Page<DockView> findAllByViewerIdOrderByCreatedAtDesc(Long viewerId, Pageable pageable);