summary refs log tree commit diff
path: root/scripts-dev/mypy_synapse_plugin.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-12-17Use the simple dictionary in full text search for the user directory (#8959)Brendan Abolivier3-12/+36
* Use the simple dictionary in fts for the user directory * Clarify naming
2020-12-17Fix a bug that deactivated users appear in the directory (#8933)Dirk Klimpel4-4/+95
Fixes a bug that deactivated users appear in the directory when their profile information was updated. To change profile information of deactivated users is neccesary for example you will remove displayname or avatar. But they should not appear in directory. They are deactivated. Co-authored-by: Erik Johnston <erikj@jki.re>
2020-12-17Make search statement in List Room and User Admin API case-insensitive (#8931)Dirk Klimpel7-11/+125
2020-12-16Add a maximum size for well-known lookups. (#8950)Patrick Cloke5-18/+80
2020-12-16Push login completion down into SsoHandler (#8941)Richard van der Hoff5-86/+80
This is another part of my work towards fixing #8876. It moves some of the logic currently in the SAML and OIDC handlers - in particular the call to `AuthHandler.complete_sso_login` down into the `SsoHandler`.
2020-12-16Fix the sample config location for the ip_range_whitelist setting. (#8954)Patrick Cloke4-24/+25
Move it from the federation section to the server section to match ip_range_blacklist.
2020-12-16Convert internal pusher dicts to attrs classes. (#8940)Patrick Cloke17-204/+266
This improves type hinting and should use less memory.
2020-12-16Fix generate_log_config script (#8952)Richard van der Hoff2-1/+4
It used to write an empty file if you gave it a -o arg.
2020-12-16Do not assume that the contents dictionary includes history_visibility. (#89