mirror of https://github.com/usbharu/Hideout.git
fix: ユーザーの作成に失敗するのを修正
This commit is contained in:
parent
fc051d2061
commit
c719716860
|
@ -55,6 +55,9 @@ class UserRepository(private val database: Database) : IUserRepository {
|
||||||
it[domain] = user.domain
|
it[domain] = user.domain
|
||||||
it[screenName] = user.screenName
|
it[screenName] = user.screenName
|
||||||
it[description] = user.description
|
it[description] = user.description
|
||||||
|
it[inbox] = user.inbox
|
||||||
|
it[outbox] = user.outbox
|
||||||
|
it[url] = user.url
|
||||||
}[Users.id].value, user)
|
}[Users.id].value, user)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -134,6 +137,9 @@ class UserRepository(private val database: Database) : IUserRepository {
|
||||||
it[domain] = userEntity.domain
|
it[domain] = userEntity.domain
|
||||||
it[screenName] = userEntity.screenName
|
it[screenName] = userEntity.screenName
|
||||||
it[description] = userEntity.description
|
it[description] = userEntity.description
|
||||||
|
it[inbox] = userEntity.inbox
|
||||||
|
it[outbox] = userEntity.outbox
|
||||||
|
it[url] = userEntity.url
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue