diff --git a/synapse/config/sso.py b/synapse/config/sso.py index 9c7d15a2357..bd8eadb723c 100644 --- a/synapse/config/sso.py +++ b/synapse/config/sso.py @@ -43,7 +43,8 @@ class SsoAttributeRequirement: """Object describing a single requirement for SSO attributes.""" attribute: str - # If a value is not given, than the attribute must simply exist. + # If neither value nor one_of is given, the attribute must simply exist. This is + # only true for CAS configs which use a different JSON schema than the one below. value: Optional[str] = None one_of: Optional[List[str]] = None