diff options
author | Valérian Rousset <tharvik@users.noreply.github.com> | 2019-10-11 13:33:12 +0200 |
---|---|---|
committer | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-10-11 12:33:12 +0100 |
commit | be9b55e0d2b758bd7d9be4273253ea115c5362a3 (patch) | |
tree | ed5c0b82ccff91ceadbfbc7620635ea6f72a2b0e /synapse/config | |
parent | Fix MAU reaping where reserved users are specified. (#6168) (diff) | |
download | synapse-be9b55e0d2b758bd7d9be4273253ea115c5362a3.tar.xz |
cas: support setting display name (#6114)
Now, the CAS server can return an attribute stating what's the desired displayname, instead of using the username directly.
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/cas.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/config/cas.py b/synapse/config/cas.py index b916c3aa66..4526c1a67b 100644 --- a/synapse/config/cas.py +++ b/synapse/config/cas.py @@ -30,11 +30,13 @@ class CasConfig(Config): self.cas_enabled = cas_config.get("enabled", True) self.cas_server_url = cas_config["server_url"] self.cas_service_url = cas_config["service_url"] + self.cas_displayname_attribute = cas_config.get("displayname_attribute") self.cas_required_attributes = cas_config.get("required_attributes", {}) else: self.cas_enabled = False self.cas_server_url = None self.cas_service_url = None + self.cas_displayname_attribute = None self.cas_required_attributes = {} def generate_config_section(self, config_dir_path, server_name, **kwargs): @@ -45,6 +47,7 @@ class CasConfig(Config): # enabled: true # server_url: "https://cas-server.com" # service_url: "https://homeserver.domain.com:8448" + # #displayname_attribute: name # #required_attributes: # # name: value """ |