Add experimental support for MSC3202: allowing application services to masquerade as specific devices. (#11538)

This commit is contained in:
reivilibre 2021-12-15 10:40:52 +00:00 committed by GitHub
parent ecfcd9bbbe
commit 17886d2603
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 162 additions and 14 deletions

View file

@ -49,3 +49,8 @@ class ExperimentalConfig(Config):
# MSC3030 (Jump to date API endpoint)
self.msc3030_enabled: bool = experimental.get("msc3030_enabled", False)
# The portion of MSC3202 which is related to device masquerading.
self.msc3202_device_masquerading_enabled: bool = experimental.get(
"msc3202_device_masquerading", False
)