-
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.
* feat: 몇가지 소소한 수정 * refactor: ♻️ user 디렉토리 구조 수정 (#53) * hotfix: conflict solve (#55) * refactor: ♻️ user 디렉토리 구조 수정 * hotfix: conflict solve * hotfix: 🚑 build error 해결 (#57) * refactor: ♻️ user 디렉토리 구조 수정 * hotfix: conflict solve * hotfix: 🚑 sever restart * fix: 루틴 삭제 기능 수정 * fix: 루틴 삭제 기능 수정 * docs: 📝 auth api 문서 추가 (#61) * hotfix: server restart * docs: 📝 auth api 문서 추가 * fix: 루틴 완수 예외처리 * fix: 루틴 완수 예외처리 * fix: 루틴 완수 예외처리 * feat: ✨ 목표 재설정 구현 --------- Co-authored-by: gzhan0226 <[email protected]>
- Loading branch information
1 parent
91256f2
commit ae6945c
Showing
4 changed files
with
61 additions
and
0 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
16 changes: 16 additions & 0 deletions
16
src/main/java/com/goormdari/domain/team/dto/request/RegenerateTeamRequest.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,16 @@ | ||
package com.goormdari.domain.team.dto.request; | ||
|
||
import lombok.Builder; | ||
|
||
import java.time.LocalDate; | ||
|
||
@Builder | ||
public record RegenerateTeamRequest( | ||
String goal, | ||
LocalDate deadline, | ||
String routine1, | ||
String routine2, | ||
String routine3, | ||
String routine4 | ||
) { | ||
} |
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