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

[Fix]: 메이커스 이미지 방지 #536

Merged
merged 4 commits into from
Nov 7, 2024

Conversation

dev-Crayon
Copy link
Contributor

Related to: #535

🐬 요약

익명 댓글을 작성할 때 메이커스 로고가 선택되는 경우를 방지했습니다.
이미지 목록 Map에 초기화 할 때 id가 6인 이미지는 제외했습니다.

👻 유형

PR의 유형에 맞게 체크해주세요!

  • 버그 수정
  • 기능 개발
  • 코드 스타일 수정 (formatting, local variables)
  • 리팩토링 (no functional changes, no api changes)
  • 빌드 관련 변경사항
  • CI 관련 변경사항
  • CD 관련 변경사항
  • 문서 내용 변경
  • Release
  • 기타... (다음 줄에 사유를 입력해주세요)

🍀 작업 내용

PR에 담긴 작업 내용을 작성해주세요!

  • 작업 1
  • 작업 2
  • 작업 3

🌟 관련 이슈

PR과 관련된 이슈 번호를 작성해주세요!

close: #535

@dev-Crayon dev-Crayon added high priority 높은 우선순위 요청 작업 승헌✏️ 승헌이 연 PR, Issue에 사용 ⛏ Fix 버그, 오류 해결 size/XS labels Nov 6, 2024
@dev-Crayon dev-Crayon requested a review from jun02160 November 6, 2024 07:09
@dev-Crayon dev-Crayon self-assigned this Nov 6, 2024
Copy link

height bot commented Nov 6, 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.

Comment on lines 49 to 53
List<AnonymousProfileImage> anonymousProfileImages = anonymousProfileImageRepository.findAll();
for (AnonymousProfileImage image : anonymousProfileImages) {
profileImageMap.put(image.getId(), image);
if (!image.getId().equals(MAKERS_LOGO_IMAGE_ID)) {
profileImageMap.put(image.getId(), image);
}
Copy link
Member

Choose a reason for hiding this comment

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

흠 6번만 제외라면 여기서 exclude 하고 쿼리하는 건 별로일까요??
나중에 익명 프로필 이미지 추가되거나 할 때도 쿼리 레벨에서 처리하는 게 더 깔끔해보입니다!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

진짜 베스트 아이디어라고 생각합니다 바로 반영했습니다!

@pull-request-size pull-request-size bot added size/S and removed size/XS labels Nov 7, 2024
@dev-Crayon dev-Crayon merged commit 2ca4af5 into develop Nov 7, 2024
1 check passed
@dev-Crayon dev-Crayon deleted the fix/#535-anonymousCommentProfileImage branch November 7, 2024 02:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
⛏ Fix 버그, 오류 해결 high priority 높은 우선순위 요청 작업 size/S 승헌✏️ 승헌이 연 PR, Issue에 사용
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feat] 익명 유저 프로필 id 6 방지
2 participants