summary refs log tree commit diff
path: root/synapse/config/sso.py
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2021-09-06 15:38:03 +0100
committerBrendan Abolivier <babolivier@matrix.org>2021-09-06 15:38:03 +0100
commit92bbe0ebe1da56a2bc5c26eeb6cc9e5ad3904ab5 (patch)
treebf53235b84c6d634dd9ac5a65d150d866e24aa72 /synapse/config/sso.py
parentMerge branch 'release-v1.42' of github.com:matrix-org/synapse into matrix-org... (diff)
parentMove the upgrade notes reminder up to rc2 (diff)
downloadsynapse-92bbe0ebe1da56a2bc5c26eeb6cc9e5ad3904ab5.tar.xz
Merge branch 'release-v1.42' into matrix-org-hotfixes
Diffstat (limited to 'synapse/config/sso.py')
-rw-r--r--synapse/config/sso.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/synapse/config/sso.py b/synapse/config/sso.py

index fe1177ab81..524a7ff3aa 100644 --- a/synapse/config/sso.py +++ b/synapse/config/sso.py
@@ -11,12 +11,23 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. +import logging from typing import Any, Dict, Optional import attr from ._base import Config +logger = logging.getLogger(__name__) + +LEGACY_TEMPLATE_DIR_WARNING = """ +This server's configuration file is using the deprecated 'template_dir' setting in the +'sso' section. Support for this setting has been deprecated and will be removed in a +future version of Synapse. Server admins should instead use the new +'custom_templates_directory' setting documented here: +https://matrix-org.github.io/synapse/latest/templates.html +---------------------------------------------------------------------------------------""" + @attr.s(frozen=True) class SsoAttributeRequirement: @@ -43,6 +54,8 @@ class SSOConfig(Config): # The sso-specific template_dir self.sso_template_dir = sso_config.get("template_dir") + if self.sso_template_dir is not None: + logger.warning(LEGACY_TEMPLATE_DIR_WARNING) # Read templates from disk custom_template_directories = (