summary refs log tree commit diff
path: root/synapse/config/password_auth_providers.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Don't load the generated config as the default.Richard van der Hoff2019-06-241-1/+1
| | | | It's too confusing.
* Pass config_dir_path and data_dir_path into Config.read_config. (#5522)Richard van der Hoff2019-06-241-1/+1
| | | | | | * Pull config_dir_path and data_dir_path calculation out of read_config_files * Pass config_dir_path and data_dir_path into read_config
* Run Black. (#5482)Amber Brown2019-06-201-10/+6
|
* Attempt to make default config more consistentRichard van der Hoff2019-02-191-14/+14
| | | | | | The general idea here is that config examples should just have a hash and no extraneous whitespace, both to make it easier for people who don't understand yaml, and to make the examples stand out from the comments.
* run isortAmber Brown2018-07-091-2/+2
|
* synapse/config/password_auth_providers: Fixed bracket typoRichard von Seck2017-11-161-2/+2
| | | | Signed-off-by: Richard von Seck <richard.von-seck@gmx.net>
* Clean up backwards-compat hacks for ldapRichard van der Hoff2017-10-311-20/+19
| | | | | | | try to make the backwards-compat flows follow the same code paths as the modern impl. This commit should be non-functional.
* Factor out module loading to a separate placeDavid Baker2017-09-261-12/+10
| | | | So it can be reused
* Use external ldap auth pacakgeErik Johnston2016-11-151-7/+13
|
* Don't assume providers raise ConfigError'sErik Johnston2016-11-081-2/+7
|
* Implement pluggable password authErik Johnston2016-10-031-0/+61
Allows delegating the password auth to an external module. This also moves the LDAP auth to using this system, allowing it to be removed from the synapse tree entirely in the future.