Browse Source

Add version flag for MSC3881 (#13860)

tags/v1.69.0rc1
Brendan Abolivier 1 year ago
committed by GitHub
parent
commit
efabf44c76
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions
  1. +1
    -0
      changelog.d/13860.feature
  2. +2
    -0
      synapse/rest/client/versions.py

+ 1
- 0
changelog.d/13860.feature View File

@@ -0,0 +1 @@
Add experimental support for [MSC3881: Remotely toggle push notifications for another client](https://github.com/matrix-org/matrix-spec-proposals/pull/3881).

+ 2
- 0
synapse/rest/client/versions.py View File

@@ -107,6 +107,8 @@ class VersionsRestServlet(RestServlet):
"fi.mau.msc2815": self.config.experimental.msc2815_enabled,
# 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
"org.matrix.msc3881": self.config.experimental.msc3881_enabled,
},
},
)


Loading…
Cancel
Save