Test 1 Can fetch a user's pushers

This commit is contained in:
Dan Peleg 2021-05-05 10:03:01 +03:00
parent c5247d390f
commit 092edee210
8 changed files with 74 additions and 91 deletions

View file

@ -252,8 +252,7 @@ type PerformPusherCreationRequest struct {
DeviceDisplayName string
ProfileTag string
Language string
URL string
Format string
Data map[string]json.RawMessage
}
// PerformPusherCreationResponse is the response for PerformPusherCreation
@ -270,8 +269,7 @@ type PerformPusherUpdateRequest struct {
DeviceDisplayName string
ProfileTag string
Language string
URL string
Format string
Data map[string]json.RawMessage
}
// PerformPusherUpdateResponse is the response for PerformPusherUpdate
@ -340,12 +338,7 @@ type Pusher struct {
DeviceDisplayName string
ProfileTag string
Language string
Data PusherData
}
type PusherData struct {
URL string
Format string
Data string
}
// Account represents a Matrix account on this home server.