summary refs log tree commit diff
path: root/synapse/rest/client/v2_alpha/devices.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Handle delete device requests with no bodyRichard van der Hoff2016-10-121-2/+11
| | | | | We should probably return a 401 rather than a 400 for existing clients that don't know they have to do the UIA dance to delete a device.
* User-interactive auth on delete deviceRichard van der Hoff2016-10-121-5/+11
|
* Implement updating devicesRichard van der Hoff2016-07-261-7/+17
| | | | You can update the displayname of devices now.
* Implement deleting devicesRichard van der Hoff2016-07-261-0/+14
|
* Implement GET /device/{deviceId}Richard van der Hoff2016-07-211-0/+25
|
* GET /devices endpointRichard van der Hoff2016-07-201-0/+51
implement a GET /devices endpoint which lists all of the user's devices. It also returns the last IP where we saw that device, so there is some dancing to fish that out of the user_ips table.