-
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.
* feat : Goal 정보 Update API 구현 (#169) * test : Goal 정보 Update API test 코드 잓성 (#169) * chore : 비구조화 할당 대신 with 문법 사용 (#169) * refactor : Sticker와 Tag의 Select가 다른 객체의 생성을 위해 쓰일 때, getById가 아닌 getReferenceById로 가져오도록 변경 (#169) * refactor : getReferenceById로 대체 가능한 부분 변경 (#169) * feat : DB Entity Not Found Error들에 대한 handler 추가 (#169) * refactor : Goal Update 메서드가 Goal을 반환하도록 변경 (#169) * ktlint formatting
- Loading branch information
Showing
9 changed files
with
164 additions
and
16 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
10 changes: 10 additions & 0 deletions
10
...plication/api/src/main/kotlin/io/raemian/api/goal/controller/request/UpdateGoalRequest.kt
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,10 @@ | ||
package io.raemian.api.goal.controller.request | ||
|
||
data class UpdateGoalRequest( | ||
val title: String, | ||
val yearOfDeadline: String, | ||
val monthOfDeadline: String, | ||
val stickerId: Long, | ||
val tagId: Long, | ||
val description: String, | ||
) |
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
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