ruma_client_api/alias/
create_alias.rs

1//! `PUT /_matrix/client/*/directory/room/{roomAlias}`
2//!
3//! Add an alias to a room.
4
5pub mod v3 {
6    //! `/v3/` ([spec])
7    //!
8    //! [spec]: https://spec.matrix.org/latest/client-server-api/#put_matrixclientv3directoryroomroomalias
9
10    use ruma_common::{
11        api::{request, response, Metadata},
12        metadata, OwnedRoomAliasId, OwnedRoomId,
13    };
14
15    const METADATA: Metadata = metadata! {
16        method: PUT,
17        rate_limited: false,
18        authentication: AccessToken,
19        history: {
20            1.0 => "/_matrix/client/r0/directory/room/:room_alias",
21            1.1 => "/_matrix/client/v3/directory/room/:room_alias",
22        }
23    };
24
25    /// Request type for the `create_alias` endpoint.
26    #[request(error = crate::Error)]
27    pub struct Request {
28        /// The room alias to set.
29        #[ruma_api(path)]
30        pub room_alias: OwnedRoomAliasId,
31
32        /// The room ID to set.
33        pub room_id: OwnedRoomId,
34    }
35
36    /// Response type for the `create_alias` endpoint.
37    #[response(error = crate::Error)]
38    #[derive(Default)]
39    pub struct Response {}
40
41    impl Request {
42        /// Creates a new `Request` with the given room alias and room id.
43        pub fn new(room_alias: OwnedRoomAliasId, room_id: OwnedRoomId) -> Self {
44            Self { room_alias, room_id }
45        }
46    }
47
48    impl Response {
49        /// Creates an empty `Response`.
50        pub fn new() -> Self {
51            Self {}
52        }
53    }
54}