Rename to_json_list to to_json_provder to reflect the response model

This commit is contained in:
theycallmesteve 2020-05-08 13:36:35 -04:00
parent 8bbbff7567
commit dfdf4473ea
No known key found for this signature in database
GPG Key ID: 6240923F65CC698D
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ pub fn routes() -> Vec<Route> {
#[get("/two-factor")]
fn get_twofactor(headers: Headers, conn: DbConn) -> JsonResult {
let twofactors = TwoFactor::find_by_user(&headers.user.uuid, &conn);
let twofactors_json: Vec<Value> = twofactors.iter().map(TwoFactor::to_json_list).collect();
let twofactors_json: Vec<Value> = twofactors.iter().map(TwoFactor::to_json_provider).collect();
Ok(Json(json!({
"Data": twofactors_json,

View File

@ -59,7 +59,7 @@ impl TwoFactor {
})
}
pub fn to_json_list(&self) -> Value {
pub fn to_json_provider(&self) -> Value {
json!({
"Enabled": self.enabled,
"Type": self.atype,