fix(profile): 사용하지 않는 websiteUrl, blogUrl 제거

This commit is contained in:
2026-02-25 14:21:50 +09:00
parent 16cc26f3f9
commit d398d4780a
2 changed files with 0 additions and 4 deletions

View File

@@ -247,8 +247,6 @@ class ExplorerService(
instagramUrl = creatorAccount.instagramUrl, instagramUrl = creatorAccount.instagramUrl,
fancimmUrl = creatorAccount.fancimmUrl, fancimmUrl = creatorAccount.fancimmUrl,
xUrl = creatorAccount.xUrl, xUrl = creatorAccount.xUrl,
youtubeUrl = creatorAccount.youtubeUrl,
websiteUrl = creatorAccount.websiteUrl,
blogUrl = creatorAccount.blogUrl, blogUrl = creatorAccount.blogUrl,
kakaoOpenChatUrl = creatorAccount.websiteUrl kakaoOpenChatUrl = creatorAccount.websiteUrl
) )

View File

@@ -11,8 +11,6 @@ data class GetCreatorDetailResponse(
@JsonProperty("instagramUrl") val instagramUrl: String, @JsonProperty("instagramUrl") val instagramUrl: String,
@JsonProperty("fancimmUrl") val fancimmUrl: String, @JsonProperty("fancimmUrl") val fancimmUrl: String,
@JsonProperty("xUrl") val xUrl: String, @JsonProperty("xUrl") val xUrl: String,
@JsonProperty("youtubeUrl") val youtubeUrl: String,
@JsonProperty("websiteUrl") val websiteUrl: String,
@JsonProperty("blogUrl") val blogUrl: String, @JsonProperty("blogUrl") val blogUrl: String,
@JsonProperty("kakaoOpenChatUrl") val kakaoOpenChatUrl: String @JsonProperty("kakaoOpenChatUrl") val kakaoOpenChatUrl: String
) )