Skip to content
Closed
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 @@ -94,7 +94,7 @@ public ApiResponse<UserMyPinsResDTO> getMyPins(
@Operation(
summary = "내 시민해결사 참여 핀 조회",
description =
"로그인한 사용자가 시민해결사(EN_ROUTE)로 참여 중인 핀을 problem_solver.created_at 내림차순으로 커서 페이징 조회합니다.")
"로그인한 사용자가 시민해결사로 참여한 핀을 problem_solver.created_at 내림차순으로 커서 페이징 조회합니다.")
@GetMapping("/me/solvers")
public ApiResponse<UserMySolversResDTO> getMySolvers(
@AuthenticationPrincipal String uid,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ LEFT JOIN LATERAL (
LIMIT 1
) pl ON TRUE
WHERE ps.uid = :uid
AND ps.problem_solve_state = 'EN_ROUTE'
AND (
NOT CAST(:applyCursor AS boolean)
OR ps.created_at < CAST(:cursorCreatedAt AS timestamp)
Expand Down
Loading