mirror of
https://github.com/usbharu/Hideout.git
synced 2026-07-03 04:07:53 +00:00
feat: 秘密にすべき情報を見えないように
This commit is contained in:
@@ -15,4 +15,8 @@ data class User(
|
|||||||
val publicKey: String,
|
val publicKey: String,
|
||||||
val privateKey: String? = null,
|
val privateKey: String? = null,
|
||||||
val createdAt: Instant
|
val createdAt: Instant
|
||||||
)
|
) {
|
||||||
|
override fun toString(): String {
|
||||||
|
return "User(id=$id, name='$name', domain='$domain', screenName='$screenName', description='$description', password=****, inbox='$inbox', outbox='$outbox', url='$url', publicKey='$publicKey', privateKey=****, createdAt=$createdAt)"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user