summary refs log tree commit diff
path: root/synapse/config/_base.pyi
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2021-01-27 12:41:24 +0000
committerGitHub <noreply@github.com>2021-01-27 12:41:24 +0000
commita737cc27134c50059440ca33510b0baea53b4225 (patch)
tree585d5df66f97c20dcf77c15be4c81827337552b4 /synapse/config/_base.pyi
parentFix Python 3.5 old deps build by using a compatible pip version. (#9217) (diff)
downloadsynapse-a737cc27134c50059440ca33510b0baea53b4225.tar.xz
Implement MSC2858 support (#9183)
Fixes #8928.
Diffstat (limited to 'synapse/config/_base.pyi')
-rw-r--r--synapse/config/_base.pyi2
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/config/_base.pyi b/synapse/config/_base.pyi
index 29aa064e57..3ccea4b02d 100644
--- a/synapse/config/_base.pyi
+++ b/synapse/config/_base.pyi
@@ -9,6 +9,7 @@ from synapse.config import (
     consent_config,
     database,
     emailconfig,
+    experimental,
     groups,
     jwt_config,
     key,
@@ -48,6 +49,7 @@ def path_exists(file_path: str): ...
 
 class RootConfig:
     server: server.ServerConfig
+    experimental: experimental.ExperimentalConfig
     tls: tls.TlsConfig
     database: database.DatabaseConfig
     logging: logger.LoggingConfig