summary refs log tree commit diff
path: root/synapse/rest/client/push_rule.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Require direct references to configuration variables. (#10985)Patrick Cloke2021-10-061-1/+3
| | | | | | This removes the magic allowing accessing configurable variables directly from the config object. It is now required that a specific configuration class is used (e.g. `config.foo` must be replaced with `config.server.foo`).
* Use direct references for some configuration variables (#10798)Patrick Cloke2021-09-131-1/+1
| | | | Instead of proxying through the magic getter of the RootConfig object. This should be more performant (and is more explicit).
* Additional type hints for client REST servlets (part 5) (#10736)Patrick Cloke2021-09-031-43/+69
| | | | Additionally this enforce type hints on all function signatures inside of the synapse.rest.client package.
* Flatten the synapse.rest.client package (#10600)reivilibre2021-08-171-0/+354