summary refs log tree commit diff
path: root/synapse/rest/admin/devices.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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