탐색 메인 - API 추가

This commit is contained in:
2023-08-01 10:23:49 +09:00
parent df861bf8a1
commit 049e1c41de
11 changed files with 376 additions and 1 deletions

View File

@@ -696,7 +696,11 @@ class LiveRoomService(
websiteUrl = user.websiteUrl,
blogUrl = user.blogUrl,
introduce = user.introduce,
tags = "",
tags = user.tags
.asSequence()
.filter { it.tag.isActive }
.map { it.tag.tag }
.joinToString(" ") { tag -> "#$tag" },
isSpeaker = isSpeaker,
isManager = isManager,
isFollowing = isFollowing,