mirror of
https://github.com/usbharu/Hideout.git
synced 2026-07-25 22:53:36 +00:00
wip
This commit is contained in:
+2
@@ -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)
|
||||||
}
|
}
|
||||||
+1
@@ -48,6 +48,7 @@ class MigrationLocalActorApplicationService(
|
|||||||
|
|
||||||
is CircularReferences -> TODO()
|
is CircularReferences -> TODO()
|
||||||
is SelfReferences -> TODO()
|
is SelfReferences -> TODO()
|
||||||
|
is AlsoKnownAsNotFound -> TODO()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+8
@@ -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>)
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user