style: スタイルを修正

This commit is contained in:
usbharu 2023-08-11 16:06:12 +09:00
parent d163fc0948
commit 8c1423b227
4 changed files with 11 additions and 10 deletions

View File

@ -25,7 +25,6 @@ class UserQueryServiceImpl : UserQueryService {
override suspend fun findByIds(ids: List<Long>): List<User> =
Users.select { Users.id inList ids }.map { it.toUser() }
override suspend fun existByNameAndDomain(name: String, domain: String): Boolean {
return Users.select { Users.name eq name and (Users.domain eq domain) }.empty().not()
}
override suspend fun existByNameAndDomain(name: String, domain: String): Boolean =
Users.select { Users.name eq name and (Users.domain eq domain) }.empty().not()
}

View File

@ -16,7 +16,7 @@ import io.ktor.server.request.*
import io.ktor.server.response.*
import io.ktor.server.routing.*
@Suppress("LongMethod")
@Suppress("LongMethod", "CognitiveComplexMethod")
fun Route.users(userService: IUserService, userApiService: IUserApiService) {
route("/users") {
get {

View File

@ -52,12 +52,12 @@ class PostApiServiceImpl(
userId: Long?
): List<PostResponse> = transaction.transaction {
postResponseQueryService.findAll(
since?.toEpochMilli(),
until?.toEpochMilli(),
minId,
maxId,
limit,
userId
since = since?.toEpochMilli(),
until = until?.toEpochMilli(),
minId = minId,
maxId = maxId,
limit = limit,
userId = userId
)
}

View File

@ -202,6 +202,7 @@ class ExposedJobRepository(
}
}
@Suppress("CyclomaticComplexMethod")
private fun String?.parseJsonMap(): Map<String, Any> {
this ?: return emptyMap()
return json.parseToJsonElement(this).jsonObject.mapValues { (_, el) ->
@ -232,6 +233,7 @@ class ExposedJobRepository(
}
}
@Suppress("CyclomaticComplexMethod")
private fun Map<String, Any>.stringify(): String? {
if (isEmpty()) {
return null