We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78285de commit bec8d22Copy full SHA for bec8d22
1 file changed
federationtypes.go
@@ -224,9 +224,11 @@ type respStateFields struct {
224
// RespUserDevices contains a response to /_matrix/federation/v1/user/devices/{userID}
225
// https://matrix.org/docs/spec/server_server/latest#get-matrix-federation-v1-user-devices-userid
226
type RespUserDevices struct {
227
- UserID string `json:"user_id"`
228
- StreamID int `json:"stream_id"`
229
- Devices []RespUserDevice `json:"devices"`
+ UserID string `json:"user_id"`
+ StreamID int `json:"stream_id"`
+ Devices []RespUserDevice `json:"devices"`
230
+ MasterKey *CrossSigningKey `json:"master_key"`
231
+ SelfSigningKey *CrossSigningKey `json:"self_signing_keys"`
232
}
233
234
// RespUserDevice are embedded in RespUserDevices
0 commit comments