deploy: a3bad89d57
parent
a2ab700eb9
commit
b1ff7595f8
|
@ -6168,6 +6168,12 @@ match a pre-existing account instead of failing. This could be used if
|
||||||
switching from password logins to OIDC. Defaults to false.</p>
|
switching from password logins to OIDC. Defaults to false.</p>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
|
<p><code>enable_registration</code>: set to 'false' to disable automatic registration of new
|
||||||
|
users. This allows the OIDC SSO flow to be limited to sign in only, rather than
|
||||||
|
automatically registering users that have a valid SSO login but do not have
|
||||||
|
a pre-registered account. Defaults to true.</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
<p><code>user_mapping_provider</code>: Configuration for how attributes returned from a OIDC
|
<p><code>user_mapping_provider</code>: Configuration for how attributes returned from a OIDC
|
||||||
provider are mapped onto a matrix user. This setting has the following
|
provider are mapped onto a matrix user. This setting has the following
|
||||||
sub-properties:</p>
|
sub-properties:</p>
|
||||||
|
@ -6289,6 +6295,7 @@ claim MUST contain "admin".</p>
|
||||||
userinfo_endpoint: "https://accounts.example.com/userinfo"
|
userinfo_endpoint: "https://accounts.example.com/userinfo"
|
||||||
jwks_uri: "https://accounts.example.com/.well-known/jwks.json"
|
jwks_uri: "https://accounts.example.com/.well-known/jwks.json"
|
||||||
skip_verification: true
|
skip_verification: true
|
||||||
|
enable_registration: true
|
||||||
user_mapping_provider:
|
user_mapping_provider:
|
||||||
config:
|
config:
|
||||||
subject_claim: "id"
|
subject_claim: "id"
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -2770,6 +2770,12 @@ match a pre-existing account instead of failing. This could be used if
|
||||||
switching from password logins to OIDC. Defaults to false.</p>
|
switching from password logins to OIDC. Defaults to false.</p>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
|
<p><code>enable_registration</code>: set to 'false' to disable automatic registration of new
|
||||||
|
users. This allows the OIDC SSO flow to be limited to sign in only, rather than
|
||||||
|
automatically registering users that have a valid SSO login but do not have
|
||||||
|
a pre-registered account. Defaults to true.</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
<p><code>user_mapping_provider</code>: Configuration for how attributes returned from a OIDC
|
<p><code>user_mapping_provider</code>: Configuration for how attributes returned from a OIDC
|
||||||
provider are mapped onto a matrix user. This setting has the following
|
provider are mapped onto a matrix user. This setting has the following
|
||||||
sub-properties:</p>
|
sub-properties:</p>
|
||||||
|
@ -2891,6 +2897,7 @@ claim MUST contain "admin".</p>
|
||||||
userinfo_endpoint: "https://accounts.example.com/userinfo"
|
userinfo_endpoint: "https://accounts.example.com/userinfo"
|
||||||
jwks_uri: "https://accounts.example.com/.well-known/jwks.json"
|
jwks_uri: "https://accounts.example.com/.well-known/jwks.json"
|
||||||
skip_verification: true
|
skip_verification: true
|
||||||
|
enable_registration: true
|
||||||
user_mapping_provider:
|
user_mapping_provider:
|
||||||
config:
|
config:
|
||||||
subject_claim: "id"
|
subject_claim: "id"
|
||||||
|
|
Loading…
Reference in New Issue