summary refs log tree commit diff
path: root/docs/password_auth_providers.rst (follow)
Commit message (Collapse)AuthorAgeFilesLines
* (#5849) Convert rst to markdown (#6040)dstipp2019-09-171-113/+0
| | | | | Converting some of the rst documentation to markdown. Attempted to preserve whitespace and line breaks to minimize cosmetic change.
* Support 3PID login in password providers (#4931)Andrew Morgan2019-03-261-0/+14
| | | | | Adds a new method, check_3pid_auth, which gives password providers the chance to allow authentication with third-party identifiers such as email or msisdn.
* Factor _AccountHandler proxy out to ModuleApiRichard van der Hoff2017-11-021-1/+1
| | | | | We're going to need to use this from places that aren't password auth, so let's move it to a proper class.
* Merge pull request #2624 from matrix-org/rav/password_provider_notify_logoutDavid Baker2017-11-021-0/+10
|\ | | | | Notify auth providers on logout
| * Notify auth providers on logoutRichard van der Hoff2017-11-011-0/+10
| | | | | | | | Provide a hook by which auth providers can be notified of logouts.
* | Allow password_auth_providers to return a callbackRichard van der Hoff2017-11-011-0/+5
|/ | | | ... so that they have a way to record access tokens.
* Let password auth providers handle arbitrary login typesRichard van der Hoff2017-11-011-10/+43
| | | | | Provide a hook where password auth providers can say they know about other login types, and get passed the relevant parameters
* DB schema interface for password auth providersRichard van der Hoff2017-10-311-0/+12
| | | | | Provide an interface by which password auth providers can register db schema files to be run at startup
* Start some documentation on password providersRichard van der Hoff2017-10-311-0/+39
Document the existing interface, before I start adding new stuff.