summary refs log tree commit diff
path: root/synapse/rest/client/v2_alpha/capabilities.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
* Port rest.client.v2Erik Johnston2019-12-051-6/+3
|
* Remove unnecessary parentheses around return statements (#5931)Andrew Morgan2019-08-301-1/+1
| | | | | Python will return a tuple whether there are parentheses around the returned values or not. I'm just sick of my editor complaining about this all over the place :)
* Replace returnValue with return (#5736)Amber Brown2019-07-231-1/+1
|
* Unify v1 and v2 REST client APIs (#5226)Amber Brown2019-06-031-2/+2
|
* Add config option for setting homeserver's default room version (#5223)Andrew Morgan2019-05-231-2/+3
| | | | | Replaces DEFAULT_ROOM_VERSION constant with a method that first checks the config, then returns a hardcoded value if the option is not present. That hardcoded value is now located in the server.py config file.
* Collect room-version variations into one place (#4969)Richard van der Hoff2019-04-011-6/+4
| | | | Collect all the things that make room-versions different to one another into one place, so that it's easier to define new room versions.
* isortNeil Johnson2019-01-301-2/+1
|
* formatting and use constants where availableNeil Johnson2019-01-301-19/+17
|
* Populate default room version from ConstantsNeil Johnson2019-01-301-1/+2
|
* reflect that rooms v3 is a stable room versionNeil Johnson2019-01-301-0/+1
|
* rework format of change password capabilityNeil Johnson2019-01-291-1/+3
|
* support change_password in capabilities end-pointNeil Johnson2019-01-291-2/+12
|
* enforce auth for capabilities endpointNeil Johnson2019-01-291-10/+17
|
* backout v3Neil Johnson2019-01-251-1/+0
|
* Support room version capabilities in CS API (MSC1804)Neil Johnson2019-01-251-0/+49