mirror of https://github.com/usbharu/Hideout.git
style: fix lint (CI)
This commit is contained in:
parent
94d0bedb36
commit
8dd55744ec
|
@ -89,9 +89,11 @@ class ExposedRelationshipRepository(override val domainEventPublisher: DomainEve
|
|||
following: Boolean
|
||||
): List<Relationship> = query {
|
||||
Relationships.selectAll().where {
|
||||
Relationships.actorId eq actorId.id and (Relationships.targetActorId inList targetIds.map {
|
||||
Relationships.actorId eq actorId.id and (
|
||||
Relationships.targetActorId inList targetIds.map {
|
||||
it.id
|
||||
}) and (Relationships.following eq following)
|
||||
}
|
||||
) and (Relationships.following eq following)
|
||||
}.map { it.toRelationships() }
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue