matrix: Add config to disable 3pid login in element web

This commit is contained in:
saibotk 2021-08-26 14:52:55 +02:00
parent 479852050d
commit 9f53177b13
Signed by: saibotk
GPG key ID: 67585F0065E261D5
2 changed files with 4 additions and 0 deletions

View file

@ -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"

View file

@ -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 }},