This commit is contained in:
usbharu 2024-05-28 17:54:17 +09:00
parent c2e8c0ca1f
commit 75f60a7a62
3 changed files with 11 additions and 0 deletions

View File

@ -32,4 +32,6 @@ sealed class AccountMigrationCheck(
class SelfReferences : 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 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>)
}