Skip to content

Commit

Permalink
feat: 사용자 프로필 응답 DTO 수정(#27)
Browse files Browse the repository at this point in the history
- 음주 성향, 흡연 성향 필드 삭제
- 성별 필드 추가
  • Loading branch information
Minjae-An committed Mar 13, 2024
1 parent e6f7eb1 commit 4aba46d
Showing 1 changed file with 6 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ public class UserProfileResponse {
description = "프로필 사진 URL들")
private List<String> profilePhotosUrls;

@Schema(
type = "string",
description = "성별",
example = "남")
private String gender;

@Schema(
type = "string",
description = "닉네임",
Expand Down Expand Up @@ -50,18 +56,6 @@ public class UserProfileResponse {
example = "80")
private double photoSyncRate;

@Schema(
type = "string",
description = "음주 성향",
example = "가끔")
private String drinkingHabit;

@Schema(
type = "string",
description = "흡연 성향",
example = "자주")
private String smokingHabit;

@Schema(
type = "string",
description = "음역대",
Expand Down

0 comments on commit 4aba46d

Please sign in to comment.