summary refs log tree commit diff
path: root/synapse/python_dependencies.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-03-27Always whitelist the login fallback for SSO (#7153)Richard van der Hoff4-1/+28
That fallback sets the redirect URL to itself (so it can process the login token then return gracefully to the client). This would make it pointless to ask the user for confirmation, since the URL the confirmation page would be showing wouldn't be the client's.
2020-03-27Improve the UX of the login fallback when using SSO (#7152)Brendan Abolivier3-22/+32
* Don't show the login forms if we're currently logging in with a password or a token. * Submit directly the SSO login form, showing only a spinner to the user, in order to eliminate from the clunkiness of SSO through this fallback.
2020-03-27Admin API to join users to a room. (#7051)Dirk Klimpel5-4/+405
2020-03-27Add options to prevent users from changing their profile. (#7096)Dirk Klimpel7-1/+449
2020-03-27update debian installation instructions to recommend installing `virtualenv` ↵txt-file2-1/+2
instead of `python3-virtualenv` (#6892) * change debian package from python3-virtualenv to virtualenv The virtualenv package is needed for the virtualenv command. The virtualenv package depends on python3-virtualenv (at least since debian jessie) so there is no need to specify python3-virtualenv additionally. Signed-off-by: Vieno Hakkerinen <vieno@hakkerinen.eu> * Add changelog Co-authored-by: Andrew Morgan <andrew@amorgan.xyz>
2020-03-27Ensure is_verified on /_matrix/client/r0/room_keys/keys is a boolean (#7150)Andrew Morgan3-2/+4
2020-03-27Only import sqlite3 when type checking (#7155)David Vo2-2/+6
Fixes: #7127 Signed-off-by: David Vo <david@vovo.id.au>
2020-03-26Refactor the CAS code (move the logic out of the REST layer to a handler) ↵Patrick Cloke5-155/+227
(#7136)
2020-03-26Update changelog.d/7151.bugfixJason Robinson1-1/+1
Co-Authored-By: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
2020-03-26Don't default to an invalid sqlite config if no database configuration is ↵Nektarios Katakis2-22/+48
provided (#6573)
2020-03-26Allow RedirectResponse in SAML response handlerJason Robinson2-0/+5
Allow custom SAML handlers to redirect after processing an auth response. Fixes #7149 Signed-off-by: Jason Robinson <jasonr@matrix.org>
2020-03-26Allow server admins to define and enforce a password policy (MSC2000). (#7118)Dirk Klimpel11-0/+437
2020-03-26Validate that the session is not modified during UI-Auth (#7068)Patrick Cloke8-14/+117
2020-03-25Remove unused captcha_bypass_secret option (#7137)Aaron Raimist3-9/+1
Signed-off-by: Aaron Raimist <aaron@raim.ist>
2020-03-25Move catchup of replication streams to worker. (#7024)Erik Johnston24-487/+635
This changes the replication protocol so that the server does not send down `RDATA` for rows that happened before the client connected. Instead, the server will send a `POSITION` and clients then query the database (or master out of band) to get up to date.
2020-03-25