ruma_identity_service_api/authentication/logout.rs
1//! `POST /_matrix/identity/*/account/logout`
2//!
3//! Logs out the access token, preventing it from being used to authenticate future requests to the
4//! server.
5
6pub mod v2 {
7 //! `/v2/` ([spec])
8 //!
9 //! [spec]: https://spec.matrix.org/latest/identity-service-api/#post_matrixidentityv2accountlogout
10
11 use ruma_common::{
12 api::{request, response, Metadata},
13 metadata,
14 };
15
16 const METADATA: Metadata = metadata! {
17 method: POST,
18 rate_limited: false,
19 authentication: AccessToken,
20 history: {
21 1.0 => "/_matrix/identity/v2/account/logout",
22 }
23 };
24
25 /// Request type for the `logout` endpoint.
26 #[request]
27 #[derive(Default)]
28 pub struct Request {}
29
30 /// Response type for the `logout` endpoint.
31 #[response]
32 #[derive(Default)]
33 pub struct Response {}
34
35 impl Request {
36 /// Creates an empty `Request`.
37 pub fn new() -> Self {
38 Self {}
39 }
40 }
41
42 impl Response {
43 /// Creates an empty `Response`.
44 pub fn new() -> Self {
45 Self {}
46 }
47 }
48}