1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//! [GET /_matrix/client/r0/user/{userId}/rooms/{roomId}/tags](https://matrix.org/docs/spec/client_server/r0.4.0.html#get-matrix-client-r0-user-userid-rooms-roomid-tags)

use ruma_api::ruma_api;
use ruma_events::{tag::TagEventContent, EventResult};
use ruma_identifiers::{RoomId, UserId};

ruma_api! {
    metadata {
        description: "Get the tags associated with a room.",
        method: GET,
        name: "get_tags",
        path: "/_matrix/client/r0/user/:user_id/rooms/:room_id/tags",
        rate_limited: false,
        requires_authentication: true,
    }

    request {
        /// The room from which tags will be retrieved.
        #[ruma_api(path)]
        pub room_id: RoomId,
        /// The user whose tags will be retrieved.
        #[ruma_api(path)]
        pub user_id: UserId,
    }

    response {
        /// The user's tags for the room.
        #[wrap_incoming(with EventResult)]
        pub tags: TagEventContent,
    }

    error: crate::Error
}