Skip to content

Commit

Permalink
feat: 런타임 에러 발생 시 디스코드 알림 전송 테스트 #48
Browse files Browse the repository at this point in the history
  • Loading branch information
mungsil committed Oct 27, 2024
1 parent 1457c82 commit aa64efd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public interface LikeRepository extends JpaRepository<Like, Long> {

Slice<Like> findByUserId(@Param("userId") Long userId, Pageable pageable);

@Query("SELECT l from Like l where l.userId = :userId and l.id < :id")
@Query("SELECT test from Like l where l.userId = :userId and l.id < :id")
Slice<Like> findByUserId(@Param("userId") Long userId, @Param("id") Long cursor, Pageable pageable);

void deleteByUserId(Long userId);
Expand Down

0 comments on commit aa64efd

Please sign in to comment.