This commit is contained in:
usbharu 2024-05-28 17:54:17 +09:00 committed by usbharu
parent 6b80d81410
commit 7f89701077
3 changed files with 11 additions and 0 deletions

View File

@ -32,4 +32,6 @@ sealed class AccountMigrationCheck(
class SelfReferences : AccountMigrationCheck(false) class SelfReferences : AccountMigrationCheck(false)
class AlreadyMoved(val message: String) : AccountMigrationCheck(false) class AlreadyMoved(val message: String) : AccountMigrationCheck(false)
class AlsoKnownAsNotFound(val message: String) : AccountMigrationCheck(false)
} }

View File

@ -48,6 +48,7 @@ class MigrationLocalActorApplicationService(
is CircularReferences -> TODO() is CircularReferences -> TODO()
is SelfReferences -> TODO() is SelfReferences -> TODO()
is AlsoKnownAsNotFound -> TODO()
} }
} }

View File

@ -0,0 +1,8 @@
package dev.usbharu.hideout.core.usecase.actor
import org.springframework.stereotype.Service
@Service
interface SetAlsoKnownAsLocalActorApplicationService {
suspend fun setAlsoKnownAs(actorId: Long, alsoKnownAs: List<Long>)
}