Skip to content

Commit

Permalink
move prelogin requests to the identity api
Browse files Browse the repository at this point in the history
the prelogin endpoint on the base api is being removed soon, see
bitwarden/server#4206
  • Loading branch information
doy committed Jun 26, 2024
1 parent 18ec5a8 commit a06655c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@ impl Client {
};
let client = self.reqwest_client().await?;
let res = client
.post(&self.api_url("/accounts/prelogin"))
.post(&self.identity_url("/accounts/prelogin"))
.json(&prelogin)
.send()
.await
Expand Down

0 comments on commit a06655c

Please sign in to comment.