We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a32f00 commit fbcfa25Copy full SHA for fbcfa25
crates/matrix-synapse/src/modern.rs
@@ -551,12 +551,10 @@ impl HomeserverConnection for SynapseConnection {
551
#[derive(Serialize)]
552
struct Request {
553
localpart: String,
554
- password: String, // Required by the API but not used in this context
555
}
556
557
let body = Request {
558
localpart: localpart.to_owned(),
559
- password: String::new(), // Empty password since we're using admin auth
560
};
561
562
let response = self
0 commit comments