mirror of
https://github.com/usbharu/Hideout.git
synced 2026-08-30 00:04:04 +00:00
fix: ユーザーの作成に失敗するのを修正
This commit is contained in:
@@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user