mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
parent
707049c6ff
commit
3f4d25a48b
1
changelog.d/12018.removal
Normal file
1
changelog.d/12018.removal
Normal file
@ -0,0 +1 @@
|
|||||||
|
Drop support for [MSC3283](https://github.com/matrix-org/matrix-doc/pull/3283) unstable flags now that the stable flags are supported.
|
@ -41,9 +41,6 @@ class ExperimentalConfig(Config):
|
|||||||
# MSC3244 (room version capabilities)
|
# MSC3244 (room version capabilities)
|
||||||
self.msc3244_enabled: bool = experimental.get("msc3244_enabled", True)
|
self.msc3244_enabled: bool = experimental.get("msc3244_enabled", True)
|
||||||
|
|
||||||
# MSC3283 (set displayname, avatar_url and change 3pid capabilities)
|
|
||||||
self.msc3283_enabled: bool = experimental.get("msc3283_enabled", False)
|
|
||||||
|
|
||||||
# MSC3266 (room summary api)
|
# MSC3266 (room summary api)
|
||||||
self.msc3266_enabled: bool = experimental.get("msc3266_enabled", False)
|
self.msc3266_enabled: bool = experimental.get("msc3266_enabled", False)
|
||||||
|
|
||||||
|
@ -72,20 +72,6 @@ class CapabilitiesRestServlet(RestServlet):
|
|||||||
"org.matrix.msc3244.room_capabilities"
|
"org.matrix.msc3244.room_capabilities"
|
||||||
] = MSC3244_CAPABILITIES
|
] = MSC3244_CAPABILITIES
|
||||||
|
|
||||||
# Must be removed in later versions.
|
|
||||||
# Is only included for migration.
|
|
||||||
# Also the parts in `synapse/config/experimental.py`.
|
|
||||||
if self.config.experimental.msc3283_enabled:
|
|
||||||
response["capabilities"]["org.matrix.msc3283.set_displayname"] = {
|
|
||||||
"enabled": self.config.registration.enable_set_displayname
|
|
||||||
}
|
|
||||||
response["capabilities"]["org.matrix.msc3283.set_avatar_url"] = {
|
|
||||||
"enabled": self.config.registration.enable_set_avatar_url
|
|
||||||
}
|
|
||||||
response["capabilities"]["org.matrix.msc3283.3pid_changes"] = {
|
|
||||||
"enabled": self.config.registration.enable_3pid_changes
|
|
||||||
}
|
|
||||||
|
|
||||||
if self.config.experimental.msc3440_enabled:
|
if self.config.experimental.msc3440_enabled:
|
||||||
response["capabilities"]["io.element.thread"] = {"enabled": True}
|
response["capabilities"]["io.element.thread"] = {"enabled": True}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user