ruma_federation_api/membership/create_leave_event/
v2.rs
1use ruma_common::{
6 api::{request, response, Metadata},
7 metadata, OwnedEventId, OwnedRoomId,
8};
9use serde_json::value::RawValue as RawJsonValue;
10
11const METADATA: Metadata = metadata! {
12 method: PUT,
13 rate_limited: false,
14 authentication: ServerSignatures,
15 history: {
16 1.0 => "/_matrix/federation/v2/send_leave/:room_id/:event_id",
17 }
18};
19
20#[request]
22pub struct Request {
23 #[ruma_api(path)]
27 pub room_id: OwnedRoomId,
28
29 #[ruma_api(path)]
31 pub event_id: OwnedEventId,
32
33 #[ruma_api(body)]
35 pub pdu: Box<RawJsonValue>,
36}
37
38#[response]
40#[derive(Default)]
41pub struct Response {}
42
43impl Request {
44 pub fn new(room_id: OwnedRoomId, event_id: OwnedEventId, pdu: Box<RawJsonValue>) -> Self {
46 Self { room_id, event_id, pdu }
47 }
48}
49
50impl Response {
51 pub fn new() -> Self {
53 Self {}
54 }
55}
56
57#[cfg(all(test, feature = "server"))]
58mod tests {
59 use ruma_common::api::OutgoingResponse;
60
61 use super::Response;
62
63 #[test]
64 fn response_body() {
65 let res = Response::new().try_into_http_response::<Vec<u8>>().unwrap();
66
67 assert_eq!(res.body(), b"{}");
68 }
69}