summary refs log tree commit diff
path: root/synapse/rest/admin/devices.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove redundant "coding: utf-8" lines (#9786)Jonathan de Jong2021-04-141-1/+0
| | | | | | | Part of #9744 Removes all redundant `# -*- coding: utf-8 -*-` lines from files, as python 3 automatically reads source code as utf-8 now. `Signed-off-by: Jonathan de Jong <jonathan@automatia.nl>`
* Add type hints to device and event report admin API (#9519)Dirk Klimpel2021-03-021-9/+24
|
* Add field `total` to device list in admin API (#8644)Dirk Klimpel2020-10-261-1/+1
|
* Simplify super() calls to Python 3 syntax. (#8344)Patrick Cloke2020-09-181-1/+1
| | | | | | | This converts calls like super(Foo, self) -> super(). Generated with: sed -i "" -Ee 's/super\([^\(]+\)/super()/g' **/*.py
* Use admin_patterns for all admin APIs. (#8331)Patrick Cloke2020-09-171-10/+5
| | | This reduces duplication of the admin prefix in regular expressions.
* Add device management to admin API (#7481)Dirk Klimpel2020-06-051-0/+161
- Admin is able to - change displaynames - delete devices - list devices - get device informations Fixes #7330