deploy: 906dfaa2cf
This commit is contained in:
parent
539b491e69
commit
93d93a5600
|
@ -6105,9 +6105,23 @@ module's <code>parse_config</code> method.</p>
|
|||
<p>For the default provider, the following settings are available:</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p><code>subject_template</code>: Jinja2 template for a unique identifier for the user.
|
||||
Defaults to <code>{{ user.sub }}</code>, which OpenID Connect compliant providers should provide.</p>
|
||||
<p>This replaces and overrides <code>subject_claim</code>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><code>subject_claim</code>: name of the claim containing a unique identifier
|
||||
for the user. Defaults to 'sub', which OpenID Connect
|
||||
compliant providers should provide.</p>
|
||||
<p><em>Deprecated in Synapse v1.75.0.</em></p>
|
||||
</li>
|
||||
<li>
|
||||
<p><code>picture_template</code>: Jinja2 template for an url for the user's profile picture.
|
||||
Defaults to <code>{{ user.picture }}</code>, which OpenID Connect compliant providers should
|
||||
provide and has to refer to a direct image file such as PNG, JPEG, or GIF image file.</p>
|
||||
<p>This replaces and overrides <code>picture_claim</code>.</p>
|
||||
<p>Currently only supported in monolithic (single-process) server configurations
|
||||
where the media repository runs within the Synapse process.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><code>picture_claim</code>: name of the claim containing an url for the user's profile picture.
|
||||
|
@ -6115,6 +6129,7 @@ Defaults to 'picture', which OpenID Connect compliant providers should provide
|
|||
and has to refer to a direct image file such as PNG, JPEG, or GIF image file.</p>
|
||||
<p>Currently only supported in monolithic (single-process) server configurations
|
||||
where the media repository runs within the Synapse process.</p>
|
||||
<p><em>Deprecated in Synapse v1.75.0.</em></p>
|
||||
</li>
|
||||
<li>
|
||||
<p><code>localpart_template</code>: Jinja2 template for the localpart of the MXID.
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -2768,9 +2768,23 @@ module's <code>parse_config</code> method.</p>
|
|||
<p>For the default provider, the following settings are available:</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p><code>subject_template</code>: Jinja2 template for a unique identifier for the user.
|
||||
Defaults to <code>{{ user.sub }}</code>, which OpenID Connect compliant providers should provide.</p>
|
||||
<p>This replaces and overrides <code>subject_claim</code>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><code>subject_claim</code>: name of the claim containing a unique identifier
|
||||
for the user. Defaults to 'sub', which OpenID Connect
|
||||
compliant providers should provide.</p>
|
||||
<p><em>Deprecated in Synapse v1.75.0.</em></p>
|
||||
</li>
|
||||
<li>
|
||||
<p><code>picture_template</code>: Jinja2 template for an url for the user's profile picture.
|
||||
Defaults to <code>{{ user.picture }}</code>, which OpenID Connect compliant providers should
|
||||
provide and has to refer to a direct image file such as PNG, JPEG, or GIF image file.</p>
|
||||
<p>This replaces and overrides <code>picture_claim</code>.</p>
|
||||
<p>Currently only supported in monolithic (single-process) server configurations
|
||||
where the media repository runs within the Synapse process.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><code>picture_claim</code>: name of the claim containing an url for the user's profile picture.
|
||||
|
@ -2778,6 +2792,7 @@ Defaults to 'picture', which OpenID Connect compliant providers should provide
|
|||
and has to refer to a direct image file such as PNG, JPEG, or GIF image file.</p>
|
||||
<p>Currently only supported in monolithic (single-process) server configurations
|
||||
where the media repository runs within the Synapse process.</p>
|
||||
<p><em>Deprecated in Synapse v1.75.0.</em></p>
|
||||
</li>
|
||||
<li>
|
||||
<p><code>localpart_template</code>: Jinja2 template for the localpart of the MXID.
|
||||
|
|
Loading…
Reference in New Issue