Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 마이프로필 및 리크루트 데이터포맷 수정 #248

Merged
merged 16 commits into from
Sep 20, 2023

Conversation

khs960616
Copy link
Collaborator

@khs960616 khs960616 commented Sep 20, 2023

Issues

구분

  • 버그 수정
  • 기능 추가
  • 코드 리팩터링
  • 문서 업데이트
  • 기타

주요 변경점

  • 세부 구현 사항 1
  • 마이프로필 리크루트 조회 쿼리 추가
  • 프론트 요청사항 반영으로 인한 데이터 필드 수정

스크린샷

기타

@khs960616 khs960616 added docs 문서 작업 fix 버그 수정 feature 기능 추가 labels Sep 20, 2023
@khs960616 khs960616 self-assigned this Sep 20, 2023
Copy link
Member

@jjuny0310 jjuny0310 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

고생하셨습니다

Copy link
Collaborator

@moonn6pence moonn6pence left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수고했슴다


recruitPages = recruitRepository.findMemberJoinRecruitWithCursorAndPageable(memberId, getRecruitsReqDto.getCursor(), pageable);
} else {
recruitPages = recruitRepository.findRecruitByGetRecruitsReqDto(getRecruitsReqDto, pageable);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

recruitRepository.findMemberJoinRecruitWithCursorAndPageable(memberId, getRecruitsReqDto.getCursor(), pageable) 에서는 커서를 꺼내서 파라미터를 넣어주는 여기서는 그렇게 안하네여?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

마이프로필쪽 api라 아직 확정되진 않았습니다. 다음 pr때 프론트랑 연동하면서 작업방향 정해지면 수정될 수 있습니다.


private BooleanExpression recruitIdLtThanCursor(Long cursor) {
return ((cursor != null) && (cursor != -1)) ? recruit.id.lt(cursor) : null;
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if (cursor == null) return null;
if (cursor == -1) return null;
return recruit.id.lt(cursor);

가 낫지 않을까요

@khs960616 khs960616 merged commit 18575e3 into SSAF-SOUND:dev Sep 20, 2023
@khs960616 khs960616 deleted the feature/myprofile-recruit-#178 branch September 22, 2023 13:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
docs 문서 작업 feature 기능 추가 fix 버그 수정
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants