Kévin Commaille 9dd55ae3bc federation-api: Deprecate v1/send_join and v1/send_leave
According to a spec clarification
2023-05-25 16:53:56 +02:00

8 lines
276 B
Rust

//! `PUT /_matrix/federation/*/send_leave/{roomId}/{eventId}`
//!
//! Submit a signed leave event to the receiving server for it to accept it into the room's graph.
#[deprecated = "Since Matrix Server-Server API r0.1.4. Use the v2 endpoint instead."]
pub mod v1;
pub mod v2;