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/#242] 링크 이동, 최근 본 링크 구현 #244

Merged
merged 5 commits into from
Oct 14, 2024
Merged

Conversation

sss4920
Copy link
Contributor

@sss4920 sss4920 commented Oct 9, 2024

🚩 관련 이슈

📋 구현 기능 명세

  • 링크 이동 구현
  • 최근 저장한 3개 링크 구현
  • 패키지 리팩토링

📌 PR Point

  • 무슨 이유로 어떻게 코드를 변경했는지
    링크 이동과 최근 저장한 3개 링크 조회를 구현했습니다.

  • 어떤 부분에 리뷰어가 집중해야 하는지
    사실 최근에 리뷰를 받았는데 객체지향적으로 설계를 하려면 해당 객체에게 메시지로 명령을 해야하는 구조로 짜야될 것 같습니다! 여기서 추가적으로 리팩토링을 해보겠습니다!

  • 개발하면서 어떤 점이 궁금했는지
    예외 케이스는 추가적으로 없을지 봐주시면 좋을 것 같습니다!
    그리고 url.. 좀 이쁘게 짜고싶은데 조언을 해주시면 같이 수정해보겠습니다.

🛠️ 테스트

  • 테스트

🚀 API Endpoint

  • toast/recent-saved
  • toast/category

@sss4920 sss4920 requested a review from mmihye October 9, 2024 15:17
@sss4920 sss4920 self-assigned this Oct 9, 2024

import jakarta.validation.constraints.NotNull;

public record MoveToastDto(Long toastId, @NotNull Long categoryId) {
Copy link
Member

Choose a reason for hiding this comment

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

toastId는 NotNull 애노테이션 하지않은이유가 있을까요???

Copy link
Contributor Author

Choose a reason for hiding this comment

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

전체 카테고리를 생각하다가 헷갈렸던 것 같네요..! toastId는 null이면 안될 것 같습니다!

@sss4920 sss4920 changed the title Feature/#242 [Feat/#242] 링크 이동, 최근 본 링크 구현 Oct 12, 2024
@sss4920 sss4920 merged commit 08c03b0 into develop Oct 14, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feat] 링크 이동, 최근 본 링크 구현
2 participants