Avoid usage of not() and add unit tests.

This commit is contained in:
Benoit Marty 2025-11-07 10:18:45 +01:00
parent 9e8fe55a90
commit a7f3fb9c38
7 changed files with 58 additions and 6 deletions

View file

@ -11,4 +11,6 @@ data class MatrixHomeServerDetails(
val url: String,
val supportsPasswordLogin: Boolean,
val supportsOidcLogin: Boolean,
)
) {
val isSupported = supportsPasswordLogin || supportsOidcLogin
}