diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2020-05-15 12:07:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-15 12:07:51 +0100 |
commit | 773d5bb9f99a6cc36d284a2fbea933f8d9e7753b (patch) | |
tree | 83058b8c84e29d9dd43afbc65699aece01d39e18 /federationapi/routing/devices.go | |
parent | f0e0a6668f5c44e384c26d5afb3b70c816e3fbff (diff) |
Return user_id and stream_id in federated devices query (#1040)
Diffstat (limited to 'federationapi/routing/devices.go')
-rw-r--r-- | federationapi/routing/devices.go | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/federationapi/routing/devices.go b/federationapi/routing/devices.go index 01647a61..49686c76 100644 --- a/federationapi/routing/devices.go +++ b/federationapi/routing/devices.go @@ -23,7 +23,9 @@ import ( ) type userDevicesResponse struct { - Devices []authtypes.Device `json:"devices"` + UserID string `json:"user_id"` + StreamID int `json:"stream_id"` + Devices []authtypes.Device `json:"devices"` } // GetUserDevices for the given user id @@ -48,6 +50,12 @@ func GetUserDevices( return util.JSONResponse{ Code: 200, - JSON: userDevicesResponse{devs}, + // TODO: we should return an incrementing stream ID each time the device + // list changes for delta changes to be recognised + JSON: userDevicesResponse{ + UserID: userID, + StreamID: 0, + Devices: devs, + }, } } |