feat(member): 팬심M 및 X URL 필드를 프로필 응답에 연동한다
This commit is contained in:
@@ -301,6 +301,8 @@ class MemberService(
|
||||
point = totalPoint,
|
||||
youtubeUrl = member.youtubeUrl,
|
||||
instagramUrl = member.instagramUrl,
|
||||
fancimmUrl = member.fancimmUrl,
|
||||
xUrl = member.xUrl,
|
||||
websiteUrl = member.websiteUrl,
|
||||
blogUrl = member.blogUrl,
|
||||
liveReservationCount = liveReservationCount,
|
||||
@@ -714,6 +716,14 @@ class MemberService(
|
||||
member.instagramUrl = profileUpdateRequest.instagramUrl
|
||||
}
|
||||
|
||||
if (profileUpdateRequest.fancimmUrl != null) {
|
||||
member.fancimmUrl = profileUpdateRequest.fancimmUrl
|
||||
}
|
||||
|
||||
if (profileUpdateRequest.xUrl != null) {
|
||||
member.xUrl = profileUpdateRequest.xUrl
|
||||
}
|
||||
|
||||
if (profileUpdateRequest.websiteUrl != null) {
|
||||
member.websiteUrl = profileUpdateRequest.websiteUrl
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user