mirror of https://github.com/usbharu/Hideout.git
wip
This commit is contained in:
parent
6b80d81410
commit
7f89701077
|
@ -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)
|
||||||
}
|
}
|
|
@ -48,6 +48,7 @@ class MigrationLocalActorApplicationService(
|
||||||
|
|
||||||
is CircularReferences -> TODO()
|
is CircularReferences -> TODO()
|
||||||
is SelfReferences -> TODO()
|
is SelfReferences -> TODO()
|
||||||
|
is AlsoKnownAsNotFound -> TODO()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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>)
|
||||||
|
}
|
Loading…
Reference in New Issue