23 lines
625 B
Rust
23 lines
625 B
Rust
//! [GET /.well-known/matrix/server](https://matrix.org/docs/spec/server_server/r0.1.3#get-well-known-matrix-server)
|
|
|
|
use ruma_api::ruma_api;
|
|
|
|
ruma_api! {
|
|
metadata: {
|
|
description: "Get discovery information about the domain.",
|
|
method: GET,
|
|
name: "discover_homeserver",
|
|
path: "/.well-known/matrix/server",
|
|
rate_limited: false,
|
|
requires_authentication: false,
|
|
}
|
|
|
|
request: {}
|
|
|
|
response: {
|
|
/// The server name to delegate server-server communciations to, with optional port.
|
|
#[serde(rename = "m.homeserver")]
|
|
pub homeserver: String,
|
|
}
|
|
}
|