-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: api 재활용을 위한 코드 수정 (#44) * refactor: api 재활용을 위한 코드 수정 (#44) * feat: userService test (#44) * test: 검증이 빠진 부분 검증 (#44) * test: 이메일로 지원 시작 알림 테스트 (#44) * test: 사진 업로드 테스트 (#44) * test: 사진 업로드 테스트 (#44) * test: 사진 업로드 테스트 (#44) * test: 이메일 테스트 (#44) * refactor: cors 설정 변경 (#44) * refactor: cors 설정 변경 (#44) * test: cors test (#44) * test: user error test (#44) * test: apply period test (#44) * test: apply period test (#44) * test: apply service test (#44) * test: user test (#44) * test: test code (#44) * refactor: delete unused class (#44) * test: exception handler test (#44) * refactor: 지원서 리팩토링 (#44) * refactor: config 리팩토링 (#44) * refactor: email 리팩토링 (#44) * refactor: user 리팩토링 (#44) * refactor: response 리팩토링 (#44) * refactor: controller 제네릭 명시 (#44)
- Loading branch information
1 parent
879e7c0
commit 907708d
Showing
36 changed files
with
1,394 additions
and
442 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,3 +98,5 @@ out | |
daemon | ||
bin | ||
.jqwik-database | ||
|
||
lombok.config |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
=== 지원 기간 시작 시 이메일 전송 | ||
==== HTTP Request | ||
include::{snippets}/email-apply-start-email/http-request.adoc[] |
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
17 changes: 17 additions & 0 deletions
17
src/main/java/yonseigolf/server/apply/dto/request/ResultNotification.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,17 @@ | ||
package yonseigolf.server.apply.dto.request; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Getter | ||
@Builder | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
public class ResultNotification { | ||
|
||
private boolean documentPass; | ||
private Boolean finalPass; | ||
} | ||
|
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
Oops, something went wrong.