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: 커피챗 메일 발송 가능하도록 수정 #570

Merged
merged 1 commit into from
Dec 28, 2024

Conversation

jun02160
Copy link
Member

🐬 요약

쪽지 보내기 API에서 커피챗 카테고리에 대해서도 메일 발송이 가능하도록 sender 구현체 판단 조건을 수정합니다.

👻 유형

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

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

🍀 작업 내용

  • request validation 추가
  • sender return 조건 수정

🌟 관련 이슈

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

close: #569

- request validation 추가
- sender return 조건 수정
@jun02160 jun02160 added ✨Feature 새로운 기능 개발시 사용합니다 예준🐈 예준이 연 PR, Issue에 사용 labels Dec 28, 2024
@jun02160 jun02160 requested a review from dev-Crayon December 28, 2024 12:09
@jun02160 jun02160 self-assigned this Dec 28, 2024
Copy link

height bot commented Dec 28, 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 +16 to +23
public MessageSender getSender(String senderEmail, String senderPhone) {
if (senderEmail != null) {
return emailChatSender;
}
if (senderPhone != null) {
return smsChatSender;
}
return null;
Copy link
Contributor

Choose a reason for hiding this comment

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

들여쓰기가 8칸 같은데 4칸으로 맞춰주시면 좋을 것 같습니다!

Copy link
Member Author

Choose a reason for hiding this comment

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

1탭 = 4칸으로 설정되어 있습니다!

@jun02160 jun02160 merged commit aa87e2f into develop Dec 28, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✨Feature 새로운 기능 개발시 사용합니다 size/M 예준🐈 예준이 연 PR, Issue에 사용
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feat] 커피챗 메일 발송 지원
2 participants