1 files changed, 8 insertions, 1 deletions
diff --git a/synapse/rest/well_known.py b/synapse/rest/well_known.py
index 04b035a1b1..6f7ac54c65 100644
--- a/synapse/rest/well_known.py
+++ b/synapse/rest/well_known.py
@@ -11,7 +11,6 @@
# 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 TYPE_CHECKING, Optional
@@ -44,6 +43,14 @@ class WellKnownBuilder:
"base_url": self._config.registration.default_identity_server
}
+ if self._config.server.extra_well_known_client_content:
+ for (
+ key,
+ value,
+ ) in self._config.server.extra_well_known_client_content.items():
+ if key not in result:
+ result[key] = value
+
return result
|