-
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.
* [#131] feat: 계층구조 수정을 위한 Validator 로직 작성 * [#131] feat: Category에 계층구조 변경 로직 작성 * [#131] feat: Service에서 변경된 Category 로직을 사용 * [#131] test: ObjectsUtils 테스트코드 작성 * [#131] test: CategoryValidator 테스트코드 개선 * [#131] test: add additional assertions in ObjectsUtilsTest (cherry picked from commit db36561)
- Loading branch information
1 parent
4969824
commit 1530e8c
Showing
34 changed files
with
2,107 additions
and
423 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
11 changes: 11 additions & 0 deletions
11
src/main/java/com/mallang/category/application/command/UpdateCategoryNameCommand.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,11 @@ | ||
package com.mallang.category.application.command; | ||
|
||
import lombok.Builder; | ||
|
||
@Builder | ||
public record UpdateCategoryNameCommand( | ||
Long categoryId, | ||
Long memberId, | ||
String name | ||
) { | ||
} |
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.