Let SpaceEntryPoint.Inputs implement NodeInputs.

This commit is contained in:
Benoit Marty 2025-09-16 09:58:42 +02:00
parent 2571bbf4ba
commit 8fa7f71d0d
2 changed files with 4 additions and 2 deletions

View file

@ -11,6 +11,7 @@ import com.bumble.appyx.core.modality.BuildContext
import com.bumble.appyx.core.node.Node
import com.bumble.appyx.core.plugin.Plugin
import io.element.android.libraries.architecture.FeatureEntryPoint
import io.element.android.libraries.architecture.NodeInputs
import io.element.android.libraries.matrix.api.core.RoomId
interface SpaceEntryPoint : FeatureEntryPoint {
@ -27,7 +28,7 @@ interface SpaceEntryPoint : FeatureEntryPoint {
data class Inputs(
val roomId: RoomId
) : Plugin
) : NodeInputs
interface Callback : Plugin {
fun onOpenRoom(roomId: RoomId)