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

Commit efabf44

Browse files
authored
Add version flag for MSC3881 (#13860)
1 parent ccca141 commit efabf44

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

changelog.d/13860.feature

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add experimental support for [MSC3881: Remotely toggle push notifications for another client](https://github.com/matrix-org/matrix-spec-proposals/pull/3881).

synapse/rest/client/versions.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,8 @@ def on_GET(self, request: Request) -> Tuple[int, JsonDict]:
107107
"fi.mau.msc2815": self.config.experimental.msc2815_enabled,
108108
# Adds support for login token requests as per MSC3882
109109
"org.matrix.msc3882": self.config.experimental.msc3882_enabled,
110+
# Adds support for remotely enabling/disabling pushers, as per MSC3881
111+
"org.matrix.msc3881": self.config.experimental.msc3881_enabled,
110112
},
111113
},
112114
)

0 commit comments

Comments
 (0)