You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: matrix-sdk-android/src/main/java/org/matrix/android/sdk/internal/session/homeserver/GetCapabilitiesResult.kt
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -37,9 +37,10 @@ internal data class GetCapabilitiesResult(
37
37
internaldata classCapabilities(
38
38
/**
39
39
* Capability to indicate if the user can change their password.
40
+
* True if the user can change their password, false otherwise.
40
41
*/
41
42
@Json(name ="m.change_password")
42
-
valchangePassword:ChangePassword? = null,
43
+
valchangePassword:BooleanCapability? = null,
43
44
44
45
/**
45
46
* This capability describes the default and available room versions a server supports, and at what level of stability.
@@ -50,9 +51,9 @@ internal data class Capabilities(
50
51
)
51
52
52
53
@JsonClass(generateAdapter =true)
53
-
internaldata classChangePassword(
54
+
internaldata classBooleanCapability(
54
55
/**
55
-
* Required. True if the user can change their password, false otherwise.
0 commit comments