mirror of https://github.com/usbharu/Hideout.git
Update src/main/kotlin/dev/usbharu/hideout/activitypub/domain/model/Person.kt
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
0f51ea7a17
commit
b83fd6e205
|
@ -67,20 +67,20 @@ constructor(
|
||||||
|
|
||||||
override fun toString(): String {
|
override fun toString(): String {
|
||||||
return "Person(" +
|
return "Person(" +
|
||||||
"name='$name', " +
|
"name='$name', " +
|
||||||
"id='$id', " +
|
"id='$id', " +
|
||||||
"preferredUsername=$preferredUsername, " +
|
"preferredUsername=$preferredUsername, " +
|
||||||
"summary=$summary, " +
|
"summary=$summary, " +
|
||||||
"inbox='$inbox', " +
|
"inbox='$inbox', " +
|
||||||
"outbox='$outbox', " +
|
"outbox='$outbox', " +
|
||||||
"url='$url', " +
|
"url='$url', " +
|
||||||
"icon=$icon, " +
|
"icon=$icon, " +
|
||||||
"publicKey=$publicKey, " +
|
"publicKey=$publicKey, " +
|
||||||
"endpoints=$endpoints, " +
|
"endpoints=$endpoints, " +
|
||||||
"followers=$followers, " +
|
"followers=$followers, " +
|
||||||
"following=$following, " +
|
"following=$following, " +
|
||||||
"manuallyApprovesFollowers=$manuallyApprovesFollowers" +
|
"manuallyApprovesFollowers=$manuallyApprovesFollowers" +
|
||||||
")" +
|
")" +
|
||||||
" ${super.toString()}"
|
" ${super.toString()}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue