Extract OIDC to its own module

This commit is contained in:
Jorge Martín 2024-08-08 16:24:13 +02:00
parent e16057a366
commit d5c2e5e436
34 changed files with 283 additions and 57 deletions

View file

@ -217,12 +217,14 @@ class VerifySelfSessionViewTest {
state: VerifySelfSessionState,
onEnterRecoveryKey: () -> Unit = EnsureNeverCalled(),
onFinished: () -> Unit = EnsureNeverCalled(),
onResetKey: () -> Unit = EnsureNeverCalled(),
) {
setContent {
VerifySelfSessionView(
state = state,
onEnterRecoveryKey = onEnterRecoveryKey,
onFinish = onFinished,
onResetKey = onResetKey,
)
}
}