mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-22 19:51:39 +00:00
Return user_id and stream_id in federated devices query (#1040)
This commit is contained in:
parent
f0e0a6668f
commit
773d5bb9f9
@ -23,6 +23,8 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type userDevicesResponse struct {
|
type userDevicesResponse struct {
|
||||||
|
UserID string `json:"user_id"`
|
||||||
|
StreamID int `json:"stream_id"`
|
||||||
Devices []authtypes.Device `json:"devices"`
|
Devices []authtypes.Device `json:"devices"`
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -48,6 +50,12 @@ func GetUserDevices(
|
|||||||
|
|
||||||
return util.JSONResponse{
|
return util.JSONResponse{
|
||||||
Code: 200,
|
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,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user