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] 플레이그라운드 채용정보 조회 기능 API - #436 #443

Merged
merged 3 commits into from
Nov 14, 2024

Conversation

rlarlgnszx
Copy link
Contributor

📝 PR Summary

🌴 Works

  • 기존에 존재하는 API에 쿼리파라미터로 조회하고 값 parsing해서 가져오는 형태입니다.

🌱 Related Issue

closed #436

🌵 PR 참고사항

  • swagger test 완료
    image

@rlarlgnszx rlarlgnszx requested a review from kseysh November 13, 2024 13:39
Copy link

height bot commented Nov 13, 2024

Link Height tasks by mentioning a task ID in the pull request title or commit messages, or description and comments with the keyword link (e.g. "Link T-123").

💡Tip: You can also use "Close T-X" to automatically close a task when the pull request is merged.

Copy link
Member

@kseysh kseysh left a comment

Choose a reason for hiding this comment

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

고생하셨습니다!

Comment on lines +62 to +65
@GetMapping("/employments")
public ResponseEntity<List<EmploymentPostResponse>> getEmploymentPosts(
@AuthenticationPrincipal User user
) {
Copy link
Member

Choose a reason for hiding this comment

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

P2. Size는 유동적으로 변할 수 있도록 파라미터로 받는 것이 좋을 것 같은데 어떻게 생각하시나요?

Comment on lines 168 to 174
.map(post -> EmploymentPostResponse.builder()
.id(post.id())
.categoryName(post.categoryName())
.title(post.title())
.content(post.content())
.images(post.images())
.build())
Copy link
Member

Choose a reason for hiding this comment

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

P3. EmploymentPostResponse에 PostInfo 메서드를 전달하면 EmploymentPostResponse에 맞는 객체를 전달해주는 of 메서드가 있다면 가독성이 더 좋아질 것 같아요!

@rlarlgnszx rlarlgnszx self-assigned this Nov 14, 2024
@pull-request-size pull-request-size bot added size/L and removed size/M labels Nov 14, 2024
@rlarlgnszx rlarlgnszx merged commit 06ce26a into dev Nov 14, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FEAT] 플레이그라운드 채용정보 확인 기능
2 participants