use ruma_api::ruma_api;
ruma_api! {
metadata: {
description: "Invalidates all access tokens for a user, so that they can no longer be used for authorization.",
method: POST,
name: "logout_all",
path: "/_matrix/client/r0/logout/all",
rate_limited: false,
authentication: AccessToken,
}
#[derive(Default)]
request: {}
#[derive(Default)]
response: {}
error: crate::Error
}
impl Request {
pub fn new() -> Self {
Self
}
}
impl Response {
pub fn new() -> Self {
Self
}
}