Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public interface UserRepository extends JpaRepository<User, Long> {

@Query(
"SELECT new io.f1.backend.domain.admin.dto.UserResponse(u.id, u.nickname, u.lastLogin,"
+ " u.createdAt) FROM User u WHERE LOWER(u.nickname) LIKE CONCAT('%',"
+ " LOWER(:nickname), '%')")
+ " u.createdAt) FROM User u WHERE LOWER(u.nickname) LIKE CONCAT('%',"
+ " LOWER(:nickname), '%')")
Page<UserResponse> findUsersByNicknameContaining(String nickname, Pageable pageable);
}
2 changes: 1 addition & 1 deletion backend/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,5 @@ server:
same-site: None
secure: true
http-only: true
timeout: 60
timeout: ${SESSION_TIMEOUT}