Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Add stable unstable version for jump to date before v1.6 is fully sup…
Browse files Browse the repository at this point in the history
…ported on Synapse

Related to #15089

Element Web PR to honor `org.matrix.msc3030.stable`: matrix-org/matrix-react-sdk#10398
  • Loading branch information
MadLittleMods committed Mar 17, 2023
1 parent 3d70cc3 commit ea8c61c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions synapse/rest/client/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ def on_GET(self, request: Request) -> Tuple[int, JsonDict]:
"fi.mau.msc2815": self.config.experimental.msc2815_enabled,
# Adds a ping endpoint for appservices to check HS->AS connection
"fi.mau.msc2659": self.config.experimental.msc2659_enabled,
# Adds support for jump to date endpoints (/timestamp_to_event) as per MSC3030.
# TODO: Remove when Synapse advertises support for `v1.6` which includes MSC3030
# (https:/matrix-org/synapse/issues/15089)
"org.matrix.msc3030.stable": True,
# Adds support for login token requests as per MSC3882
"org.matrix.msc3882": self.config.experimental.msc3882_enabled,
# Adds support for remotely enabling/disabling pushers, as per MSC3881
Expand Down

0 comments on commit ea8c61c

Please sign in to comment.