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
220 B
Rust

//! `PUT /_matrix/federation/*/send_join/{roomId}/{eventId}`
//!
//! Send a join event to a resident server.
#[deprecated = "Since Matrix Server-Server API r0.1.4. Use the v2 endpoint instead."]
pub mod v1;
pub mod v2;