-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[COZY-440] fix: 사용자 탈퇴시 탈퇴사유 요청받아서 메일 보내기 (#213)
* [COZY-440] feat : 관리자에게 메일 보내는 기능 추가 * [COZY-440] feat : 탈퇴 Request dto 생성 * [COZY-440] feat : 관리자 토큰 발급시 https 추가 cors 해결 * [COZY-440] fix : 탈퇴 시 탈퇴사유 메일 보내는 로직 추가 * [COZY-440] fix : 메일 주소 변경
- Loading branch information
1 parent
8225f14
commit 92acacf
Showing
6 changed files
with
72 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
src/main/java/com/cozymate/cozymate_server/domain/member/dto/request/WithdrawRequestDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.cozymate.cozymate_server.domain.member.dto.request; | ||
|
||
import org.hibernate.validator.constraints.Length; | ||
|
||
public record WithdrawRequestDTO( | ||
@Length(max = 100, message = "탈퇴 사유는 최대 100자") | ||
String withdrawReason | ||
) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters