feat(member): 팬심M 및 X URL 필드를 프로필 응답에 연동한다

This commit is contained in:
2026-02-20 19:31:13 +09:00
parent c3a2ca66f8
commit ecef49393b
12 changed files with 50 additions and 0 deletions

View File

@@ -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
}