use ruma_api::ruma_api;
use ruma_identifiers::RoomId;
ruma_api! {
metadata: {
description: "Get a list of the user's current rooms.",
method: GET,
name: "joined_rooms",
path: "/_matrix/client/r0/joined_rooms",
rate_limited: false,
authentication: AccessToken,
}
#[derive(Default)]
request: {}
response: {
pub joined_rooms: Vec<RoomId>,
}
error: crate::Error
}
impl Request {
pub fn new() -> Self {
Self
}
}
impl Response {
pub fn new(joined_rooms: Vec<RoomId>) -> Self {
Self { joined_rooms }
}
}