Merge pull request '콘텐츠 상세' (#190) from test into main
Reviewed-on: #190
This commit is contained in:
commit
5a4be3d2c1
|
@ -543,6 +543,7 @@ class AudioContentService(
|
|||
}
|
||||
|
||||
val tag = audioContent.audioContentHashTags
|
||||
.filter { it.isActive }
|
||||
.map { it.hashTag!!.tag }
|
||||
.joinToString(" ") { it }
|
||||
|
||||
|
|
|
@ -21,6 +21,8 @@ class AudioContentHashTag {
|
|||
|
||||
var createdAt: LocalDateTime? = null
|
||||
|
||||
var isActive: Boolean = true
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
@JoinColumn(name = "content_id", nullable = false)
|
||||
var audioContent: AudioContent? = null
|
||||
|
|
Loading…
Reference in New Issue