Update post_keys to return a keys response model

This commit is contained in:
theycallmesteve 2020-05-08 13:38:49 -04:00
parent 8bbbff7567
commit 5571a5d8ed
No known key found for this signature in database
GPG Key ID: 6240923F65CC698D
1 changed files with 6 additions and 1 deletions

View File

@ -210,7 +210,12 @@ fn post_keys(data: JsonUpcase<KeysData>, headers: Headers, conn: DbConn) -> Json
user.public_key = Some(data.PublicKey);
user.save(&conn)?;
Ok(Json(user.to_json(&conn)))
Ok(Json(json!({
"PrivateKey": user.private_key,
"PublicKey": user.public_key,
"Object":"keys"
})))
}
#[derive(Deserialize)]