feat: ページングに対応

This commit is contained in:
usbharu 2024-07-30 01:09:00 +09:00
parent 982a29f1e0
commit fcd6ebc518
Signed by: usbharu
GPG Key ID: 6556747BF94EEBC8
2 changed files with 3 additions and 2 deletions

View File

@ -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,

View File

@ -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 {