Skip to content

Commit 047764b

Browse files
girlbossceozecakeh
authored andcommitted
client-api: add unstable MSC4121 support (moderator role definition)
Signed-off-by: strawberry <[email protected]>
1 parent 31dc4a2 commit 047764b

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

crates/ruma-client-api/CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Improvements:
4444
- Add server support discovery endpoint, according to MSC1929 / Matrix 1.10
4545
- Add `dir` `Request` field on the `get_relating_events_with_rel_types` and
4646
`get_relating_events_with_rel_type_and_event_type` endpoints
47+
- Add unstable support for moderator server support discovery, according to MSC4121
4748

4849
# 0.17.4
4950

@@ -83,7 +84,7 @@ Breaking changes:
8384

8485
Improvements:
8586

86-
- Add convenience constructors for enabling lazy-loading in filters
87+
- Add convenience constructors for enabling lazy-loading in filters
8788
- Add support for using an existing session to log in another (MSC3882 / Matrix 1.7)
8889
- Add support for media download redirects (MSC3860 / Matrix 1.7)
8990
- Stabilize support for asynchronous media uploads (MSC2246 / Matrix 1.7)

crates/ruma-client-api/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ unstable-msc3488 = []
4747
unstable-msc3575 = []
4848
unstable-msc3814 = []
4949
unstable-msc3983 = []
50+
unstable-msc4121 = []
5051

5152
[dependencies]
5253
as_variant = { workspace = true }

crates/ruma-client-api/src/discovery/discover_support.rs

+7
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,13 @@ pub enum ContactRole {
112112
/// A role intended for sensitive requests.
113113
Security,
114114

115+
/// A role for moderation-related queries according to [MSC4121](https://github.com/matrix-org/matrix-spec-proposals/pull/4121).
116+
///
117+
/// The future prefix for this if accepted will be `m.role.moderator`
118+
#[cfg(feature = "unstable-msc4121")]
119+
#[ruma_enum(rename = "support.feline.msc4121.role.moderator", alias = "m.role.moderator")]
120+
Moderator,
121+
115122
#[doc(hidden)]
116123
_Custom(PrivOwnedStr),
117124
}

crates/ruma/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@ unstable-msc3955 = ["ruma-events?/unstable-msc3955"]
215215
unstable-msc3956 = ["ruma-events?/unstable-msc3956"]
216216
unstable-msc3983 = ["ruma-client-api?/unstable-msc3983"]
217217
unstable-msc4075 = ["ruma-events?/unstable-msc4075"]
218+
unstable-msc4121 = ["ruma-client-api?/unstable-msc4121"]
218219
unstable-pdu = ["ruma-events?/unstable-pdu"]
219220
unstable-unspecified = [
220221
"ruma-common/unstable-unspecified",

0 commit comments

Comments
 (0)