diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-04-12 08:42:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-12 08:42:03 -0400 |
commit | 86cf6a3a17376dd83a9222f77521d1619b528d66 (patch) | |
tree | 3552f7be218aa0079d3a6edaddf4614566f1d25c /synapse/api/constants.py | |
parent | Add some type hints to datastore (#12423) (diff) | |
download | synapse-86cf6a3a17376dd83a9222f77521d1619b528d66.tar.xz |
Remove references to unstable identifiers from MSC3440. (#12382)
Removes references to unstable thread relation, unstable identifiers for filtering parameters, and the experimental config flag.
Diffstat (limited to 'synapse/api/constants.py')
-rw-r--r-- | synapse/api/constants.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py index 92907415e6..0172eb60b8 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -179,8 +179,6 @@ class RelationTypes: REPLACE: Final = "m.replace" REFERENCE: Final = "m.reference" THREAD: Final = "m.thread" - # TODO Remove this in Synapse >= v1.57.0. - UNSTABLE_THREAD: Final = "io.element.thread" class LimitBlockingTypes: |