mirror of
https://github.com/usbharu/Hideout.git
synced 2026-09-26 15:01:09 +00:00
style: fix lint (CI)
This commit is contained in:
committed by
github-actions[bot]
parent
94d0bedb36
commit
8dd55744ec
+5
-3
@@ -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 {
|
||||
it.id
|
||||
}) and (Relationships.following eq following)
|
||||
Relationships.actorId eq actorId.id and (
|
||||
Relationships.targetActorId inList targetIds.map {
|
||||
it.id
|
||||
}
|
||||
) and (Relationships.following eq following)
|
||||
}.map { it.toRelationships() }
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user