Skip to content

Commit

Permalink
Merge pull request #118 from dongkyun0713/dongkyun
Browse files Browse the repository at this point in the history
feat() : 프로필 조회 유저 아이디 추가
  • Loading branch information
dongkyun0713 authored Feb 28, 2024
2 parents 7d574c1 + 9f25a6b commit e7e3b7d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
@NoArgsConstructor
@Builder
public class UserProfileViewDto {
private Long userId;
private String profile;
private String name;
private String nickname;
Expand All @@ -27,6 +28,7 @@ public class UserProfileViewDto {

public static UserProfileViewDto of(User user) {
return new UserProfileViewDto(
user.getId(),
user.getProfile(),
user.getName(),
user.getNickname(),
Expand Down

0 comments on commit e7e3b7d

Please sign in to comment.