matrix: Add config to disable 3pid login in element web
This commit is contained in:
parent
479852050d
commit
9f53177b13
2 changed files with 4 additions and 0 deletions
|
@ -73,6 +73,9 @@ matrix_elementweb_disable_custom_urls: true
|
|||
# Should Element-Web disable guests? (without sign-in)
|
||||
matrix_elementweb_disable_guests: true
|
||||
|
||||
# Should Element-Web disable 3PID login? (Login with Email etc)
|
||||
matrix_elementweb_disable_3pid_login: false
|
||||
|
||||
# Integration Server URLs to use (see https://github.com/vector-im/element-web/blob/develop/docs/config.md)
|
||||
matrix_elementweb_integrations_ui_url: "https://scalar.vector.im/"
|
||||
matrix_elementweb_integrations_rest_url: "https://scalar.vector.im/api"
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
}
|
||||
},
|
||||
"disable_custom_urls": {{ matrix_elementweb_disable_custom_urls | to_json }},
|
||||
"disable_3pid_login": {{ matrix_elementweb_disable_3pid_login | to_json }},
|
||||
"disable_guests": {{ matrix_elementweb_disable_guests | to_json }},
|
||||
"integrations_ui_url": {{ matrix_elementweb_integrations_ui_url | string | to_json }},
|
||||
"integrations_rest_url": {{ matrix_elementweb_integrations_rest_url | string | to_json }},
|
||||
|
|
Loading…
Add table
Reference in a new issue