Skip to content

Commit 078465c

Browse files
author
github-actions
committed
chore: Java 스타일 수정
1 parent 51d79c6 commit 078465c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/src/main/java/io/f1/backend/domain/user/dao/UserRepository.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public interface UserRepository extends JpaRepository<User, Long> {
2525

2626
@Query(
2727
"SELECT new io.f1.backend.domain.admin.dto.UserResponse(u.id, u.nickname, u.lastLogin,"
28-
+ " u.createdAt) FROM User u WHERE LOWER(u.nickname) LIKE CONCAT('%',"
29-
+ " LOWER(:nickname), '%')")
28+
+ " u.createdAt) FROM User u WHERE LOWER(u.nickname) LIKE CONCAT('%',"
29+
+ " LOWER(:nickname), '%')")
3030
Page<UserResponse> findUsersByNicknameContaining(String nickname, Pageable pageable);
3131
}

0 commit comments

Comments
 (0)