Skip to content

Commit

Permalink
πŸ› fix: ν•„ν„° μ†Œκ°œ API 응닡 μˆ˜μ •
Browse files Browse the repository at this point in the history
  • Loading branch information
tmddus2 committed Aug 11, 2024
1 parent cf9bbe9 commit 75bd29f
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ public class FilterDescriptionDto {
@Schema(description = "μž‘κ°€ 이름")
String name;

@Schema(description = "μž‘κ°€ ν”„λ‘œν•„")
String profile;

@Schema(description = "ν•„ν„° μ†Œκ°œ")
String description;

Expand All @@ -35,6 +38,7 @@ public static FilterDescriptionDto of(Filter filter) {

return FilterDescriptionDto.builder()
.photographerId(photographer.getId())
.profile(photographer.getProfile())
.name(photographer.getUsername())
.description(filter.getDescription())
.photoDescriptions(PhotoDescription.of(filter.getFilterDetails()))
Expand Down

0 comments on commit 75bd29f

Please sign in to comment.