mirror of https://github.com/usbharu/Hideout.git
feat: ページングに対応
This commit is contained in:
parent
982a29f1e0
commit
fcd6ebc518
|
@ -47,7 +47,7 @@ class UserDetail private constructor(
|
|||
password: UserDetailHashedPassword,
|
||||
autoAcceptFolloweeFollowRequest: Boolean = false,
|
||||
lastMigration: Instant? = null,
|
||||
homeTimelineId: TimelineId?
|
||||
homeTimelineId: TimelineId? = null
|
||||
): UserDetail {
|
||||
return UserDetail(
|
||||
id,
|
||||
|
|
|
@ -24,7 +24,8 @@ class FilterTest {
|
|||
actorId = ActorId(1),
|
||||
password = UserDetailHashedPassword(""),
|
||||
autoAcceptFolloweeFollowRequest = false,
|
||||
lastMigration = null
|
||||
lastMigration = null,
|
||||
null
|
||||
)
|
||||
|
||||
assertDoesNotThrow {
|
||||
|
|
Loading…
Reference in New Issue