Skip to content

Commit

Permalink
YEL-214 [fix] 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
hyeonjeongs committed Feb 28, 2024
1 parent c895a0b commit d8b09d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,5 +134,7 @@ List<User> findAllByOtherGroupContainingYelloId(@Param("groupName") String group
+ "where LOWER(u.name) like LOWER(CONCAT('%', :name, '%'))")
Page<User> findAllByNameContaining(Pageable pageable, @Param("name") String name);

Page<User> findAllByPageable(Pageable pageable);


}
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,6 @@ List<User> findAllByOtherGroupContainingYelloId(String groupName, String keyword

void delete(User user);

Page<User> findAllByPageable(Pageable pageable);

}

0 comments on commit d8b09d0

Please sign in to comment.