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,
|
password: UserDetailHashedPassword,
|
||||||
autoAcceptFolloweeFollowRequest: Boolean = false,
|
autoAcceptFolloweeFollowRequest: Boolean = false,
|
||||||
lastMigration: Instant? = null,
|
lastMigration: Instant? = null,
|
||||||
homeTimelineId: TimelineId?
|
homeTimelineId: TimelineId? = null
|
||||||
): UserDetail {
|
): UserDetail {
|
||||||
return UserDetail(
|
return UserDetail(
|
||||||
id,
|
id,
|
||||||
|
|
|
@ -24,7 +24,8 @@ class FilterTest {
|
||||||
actorId = ActorId(1),
|
actorId = ActorId(1),
|
||||||
password = UserDetailHashedPassword(""),
|
password = UserDetailHashedPassword(""),
|
||||||
autoAcceptFolloweeFollowRequest = false,
|
autoAcceptFolloweeFollowRequest = false,
|
||||||
lastMigration = null
|
lastMigration = null,
|
||||||
|
null
|
||||||
)
|
)
|
||||||
|
|
||||||
assertDoesNotThrow {
|
assertDoesNotThrow {
|
||||||
|
|
Loading…
Reference in New Issue