test #369

Merged
klaus merged 90 commits from test into main 2025-12-31 05:44:55 +00:00
4 changed files with 0 additions and 6 deletions
Showing only changes of commit 5d925e98e0 - Show all commits

View File

@@ -388,8 +388,6 @@ class ChatCharacterController(
val entity = AiCharacterTranslation(
characterId = character.id!!,
locale = locale,
translatedName = translatedName,
translatedTags = translatedTags,
renderedPayload = payload
)

View File

@@ -20,8 +20,6 @@ import javax.persistence.UniqueConstraint
class AiCharacterTranslation(
val characterId: Long,
val locale: String,
val translatedName: String,
val translatedTags: String,
@Column(columnDefinition = "json")
@Convert(converter = AiCharacterTranslationRenderedPayloadConverter::class)

View File

@@ -795,7 +795,6 @@ class AudioContentService(
kr.co.vividnext.sodalive.content.translation.ContentTranslation(
contentId = audioContent.id!!,
locale = locale,
translatedTitle = translatedTitle,
renderedPayload = payload
)
)

View File

@@ -20,7 +20,6 @@ import javax.persistence.UniqueConstraint
class ContentTranslation(
val contentId: Long,
val locale: String,
val translatedTitle: String,
@Column(columnDefinition = "json")
@Convert(converter = ContentTranslationPayloadConverter::class)