1 files changed, 10 insertions, 7 deletions
diff --git a/latest/admin_api/experimental_features.html b/latest/admin_api/experimental_features.html
index 00efb0f9a6..046c6874da 100644
--- a/latest/admin_api/experimental_features.html
+++ b/latest/admin_api/experimental_features.html
@@ -148,11 +148,15 @@
<h1 id="experimental-features-api"><a class="header" href="#experimental-features-api">Experimental Features API</a></h1>
<p>This API allows a server administrator to enable or disable some experimental features on a per-user
-basis. Currently supported features are <a href="https://github.com/matrix-org/matrix-spec-proposals/pull/3026">msc3026</a>: busy
-presence state enabled, <a href="https://github.com/matrix-org/matrix-spec-proposals/pull/2654">msc2654</a>: enable unread counts,
-<a href="https://github.com/matrix-org/matrix-spec-proposals/pull/3881">msc3881</a>: enable remotely toggling push notifications
-for another client, and <a href="https://github.com/matrix-org/matrix-spec-proposals/pull/3967">msc3967</a>: do not require
-UIA when first uploading cross-signing keys. </p>
+basis. The currently supported features are: </p>
+<ul>
+<li><a href="https://github.com/matrix-org/matrix-spec-proposals/pull/3026">MSC3026</a>: busy
+presence state enabled</li>
+<li><a href="https://github.com/matrix-org/matrix-spec-proposals/pull/3881">MSC3881</a>: enable remotely toggling push notifications
+for another client </li>
+<li><a href="https://github.com/matrix-org/matrix-spec-proposals/pull/3967">MSC3967</a>: do not require
+UIA when first uploading cross-signing keys. </li>
+</ul>
<p>To use it, you will need to authenticate by providing an <code>access_token</code>
for a server admin: see <a href="../usage/administration/admin_api/">Admin API</a>.</p>
<h2 id="enablingdisabling-features"><a class="header" href="#enablingdisabling-features">Enabling/Disabling Features</a></h2>
@@ -161,7 +165,7 @@ provide a body containing the user id and listing the features to enable/disable
<pre><code class="language-json">{
"features": {
"msc3026":true,
- "msc2654":true
+ "msc3881":true
}
}
</code></pre>
@@ -178,7 +182,6 @@ user like so:</p>
<pre><code class="language-json">{
"features": {
"msc3026": true,
- "msc2654": true,
"msc3881": false,
"msc3967": false
}
|