make content repo creating content more readable
This commit is contained in:
parent
ed46c888e3
commit
703f3c057c
File diff suppressed because one or more lines are too long
@ -61,10 +61,13 @@ class BusinessWriteContentRepo(
|
||||
return values.mapNotNull { content ->
|
||||
if (content is OtherContentLinkContent) {
|
||||
adapters.forEach {
|
||||
return@mapNotNull RegisteredContent(
|
||||
content.otherId,
|
||||
it.getContent(content.otherId) ?: return@forEach
|
||||
)
|
||||
val existsContent = it.getContent(content.otherId)
|
||||
if (existsContent != null) {
|
||||
return@mapNotNull RegisteredContent(
|
||||
content.otherId,
|
||||
existsContent
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
val contentId = generateContentId()
|
||||
|
Loading…
Reference in New Issue
Block a user