mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-15 17:02:06 +01:00
Cherry-picked baa9d10fd2b1e8e07253f4f3576cfb5fff875c44
This commit is contained in:
parent
14d5ab14d2
commit
1c79952150
2 changed files with 7 additions and 14 deletions
|
@ -49,16 +49,9 @@ data class Certification(
|
||||||
this(issuer, target, targetUserId, creationTime, null, true, 120, Depth.limited(0), RegexSet.wildcard())
|
this(issuer, target, targetUserId, creationTime, null, true, 120, Depth.limited(0), RegexSet.wildcard())
|
||||||
|
|
||||||
override fun toString(): String {
|
override fun toString(): String {
|
||||||
val relation = if (userId != null) {
|
return if (userId != null)
|
||||||
"certifies"
|
"$issuer certifies [$userId] ${target.fingerprint}"
|
||||||
} else {
|
else
|
||||||
"delegates to"
|
"$issuer delegates to ${target.fingerprint}"
|
||||||
}
|
|
||||||
val relationTarget = if (userId != null) {
|
|
||||||
"[$userId] ${target.fingerprint}"
|
|
||||||
} else {
|
|
||||||
"$target"
|
|
||||||
}
|
|
||||||
return "$issuer $relation $relationTarget"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -85,6 +85,6 @@ data class CertificationSet(
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun toString(): String {
|
override fun toString(): String {
|
||||||
return "$certifications"
|
return certifications.map { it.value }.flatten().joinToString("\n")
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue