advertise support for MSC4133 and MSC4175

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-09-08 19:53:33 -04:00
parent 38cd88e1e8
commit 61347bee06
2 changed files with 8 additions and 0 deletions

View file

@ -7,6 +7,7 @@ use ruma::{
},
RoomVersionId,
};
use serde_json::json;
use crate::{Result, Ruma};
@ -42,6 +43,11 @@ pub(crate) async fn get_capabilities_route(
enabled: false,
};
// MSC4133 capability
capabilities
.set("uk.tcpip.msc4133.profile_fields", json!({"enabled": true}))
.expect("this is valid JSON we created");
Ok(get_capabilities::v3::Response {
capabilities,
})

View file

@ -55,6 +55,8 @@ pub(crate) async fn get_supported_versions_route(
("org.matrix.msc3575".to_owned(), true), /* sliding sync (https://github.com/matrix-org/matrix-spec-proposals/pull/3575/files#r1588877046) */
("org.matrix.msc3916.stable".to_owned(), true), /* authenticated media (https://github.com/matrix-org/matrix-spec-proposals/pull/3916) */
("org.matrix.msc4180".to_owned(), true), /* stable flag for 3916 (https://github.com/matrix-org/matrix-spec-proposals/pull/4180) */
("uk.tcpip.msc4133".to_owned(), true), /* Extending User Profile API with Key:Value Pairs (https://github.com/matrix-org/matrix-spec-proposals/pull/4133) */
("us.cloke.msc4175".to_owned(), true), /* Profile field for user time zone (https://github.com/matrix-org/matrix-spec-proposals/pull/4175) */
]),
};