feat(profile): 카카오 오픈채팅 URL 필드로 프로필 응답과 수정을 통일한다

This commit is contained in:
2026-02-24 17:22:29 +09:00
parent 1650ed402c
commit 772883993b
11 changed files with 34 additions and 32 deletions

View File

@@ -10,8 +10,7 @@ data class CreatorResponse(
val fancimmUrl: String? = null,
val xUrl: String? = null,
val youtubeUrl: String? = null,
val websiteUrl: String? = null,
val blogUrl: String? = null,
val kakaoOpenChatUrl: String? = null,
val isFollow: Boolean,
val isNotify: Boolean,
val isNotification: Boolean,

View File

@@ -248,8 +248,7 @@ class ExplorerService(
fancimmUrl = creatorAccount.fancimmUrl,
xUrl = creatorAccount.xUrl,
youtubeUrl = creatorAccount.youtubeUrl,
websiteUrl = creatorAccount.websiteUrl,
blogUrl = creatorAccount.blogUrl
kakaoOpenChatUrl = creatorAccount.websiteUrl
)
}
@@ -451,8 +450,7 @@ class ExplorerService(
fancimmUrl = creatorAccount.fancimmUrl,
xUrl = creatorAccount.xUrl,
youtubeUrl = creatorAccount.youtubeUrl,
websiteUrl = creatorAccount.websiteUrl,
blogUrl = creatorAccount.blogUrl,
kakaoOpenChatUrl = creatorAccount.websiteUrl,
isFollow = creatorFollowing?.isFollow ?: false,
isNotify = creatorFollowing?.isNotify ?: false,
isNotification = creatorFollowing?.isFollow ?: false,

View File

@@ -10,6 +10,5 @@ data class GetCreatorDetailResponse(
val fancimmUrl: String,
val xUrl: String,
val youtubeUrl: String,
val websiteUrl: String,
val blogUrl: String
val kakaoOpenChatUrl: String
)