Merge branch 'master' into flub/send-backup

This commit is contained in:
Floris Bruynooghe
2023-03-02 11:35:17 +01:00
72 changed files with 2256 additions and 1383 deletions

View File

@@ -515,11 +515,15 @@ fn decode_backup(qr: &str) -> Result<Qr> {
#[derive(Debug, Deserialize)]
struct CreateAccountSuccessResponse {
/// Email address.
email: String,
/// Password.
password: String,
}
#[derive(Debug, Deserialize)]
struct CreateAccountErrorResponse {
/// Reason for the failure to create account returned by the server.
reason: String,
}