mirror of https://github.com/usbharu/Hideout.git
feat: 秘密にすべき情報を見えないように
This commit is contained in:
parent
152d7ea5d6
commit
9c41b6543a
|
@ -15,4 +15,8 @@ data class User(
|
|||
val publicKey: String,
|
||||
val privateKey: String? = null,
|
||||
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)"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue