diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-12-04 10:14:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-04 10:14:15 +0000 |
commit | 6e4f71c0574adf9bb314982713c38b1c0064d293 (patch) | |
tree | c6cbed34915c3e1ae8eb90ac816bf90d7776b045 /docs/sso_mapping_providers.md | |
parent | Fix errorcode for disabled registration (#8867) (diff) | |
download | synapse-6e4f71c0574adf9bb314982713c38b1c0064d293.tar.xz |
Fix a buglet in the SAML username mapping provider doc (#8873)
the constructor is called with a `module_api`.
Diffstat (limited to 'docs/sso_mapping_providers.md')
-rw-r--r-- | docs/sso_mapping_providers.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/sso_mapping_providers.md b/docs/sso_mapping_providers.md index dee53b5d40..c13b4f7155 100644 --- a/docs/sso_mapping_providers.md +++ b/docs/sso_mapping_providers.md @@ -116,11 +116,13 @@ comment these options out and use those specified by the module instead. A custom mapping provider must specify the following methods: -* `__init__(self, parsed_config)` +* `__init__(self, parsed_config, module_api)` - Arguments: - `parsed_config` - A configuration object that is the return value of the `parse_config` method. You should set any configuration options needed by the module here. + - `module_api` - a `synapse.module_api.ModuleApi` object which provides the + stable API available for extension modules. * `parse_config(config)` - This method should have the `@staticmethod` decoration. - Arguments: |