Remove from_ref with unneeded clones
This commit is contained in:
parent
734f8b291c
commit
76b14ce75b
3 changed files with 4 additions and 12 deletions
|
@ -22,7 +22,7 @@ pub async fn index(pool: web::Data<Pool<Sqlite>>) -> Result<HttpResponse, ApiErr
|
|||
let relays = Relay::get_all(&mut pool_conn).await?;
|
||||
|
||||
let return_relays: Vec<ReturnRelay> =
|
||||
relays.iter().map(|s| ReturnRelay::from_relay_ref(s, &mut pool_conn)).collect();
|
||||
relays.into_iter().map(|s| ReturnRelay::from_relay(s, &mut pool_conn)).collect();
|
||||
|
||||
Ok(HttpResponse::Ok().json(return_relays))
|
||||
}
|
||||
|
@ -40,7 +40,7 @@ pub async fn index(pool: web::Data<Pool<Sqlite>>) -> Result<HttpResponse, ApiErr
|
|||
// let relays = Relay::get_by_tag(&mut pool_conn, &tag_db).await?;
|
||||
//
|
||||
// let return_relays: Vec<ReturnRelay> =
|
||||
// relays.iter().map(|s| ReturnRelay::from_relay_ref(s, &mut pool_conn)).collect();
|
||||
// relays.into_iter().map(|s| ReturnRelay::from_relay(s, &mut pool_conn)).collect();
|
||||
//
|
||||
// Ok(HttpResponse::Ok().json(return_relays))
|
||||
//}
|
||||
|
|
|
@ -24,7 +24,7 @@ pub async fn index(pool: web::Data<Pool<Sqlite>>) -> Result<HttpResponse, ApiErr
|
|||
let schedules = Schedule::get_all(&mut pool_conn).await?;
|
||||
|
||||
let return_schedules: Vec<ReturnSchedule> =
|
||||
schedules.iter().map(|s| ReturnSchedule::from_schedule_ref(s, &mut pool_conn)).collect();
|
||||
schedules.into_iter().map(|s| ReturnSchedule::from_schedule(s, &mut pool_conn)).collect();
|
||||
|
||||
Ok(HttpResponse::Ok().json(return_schedules))
|
||||
}
|
||||
|
@ -42,7 +42,7 @@ pub async fn tagged(
|
|||
let schedules = Schedule::get_by_tag(&mut pool_conn, &tag_db).await?;
|
||||
|
||||
let return_schedules: Vec<ReturnSchedule> =
|
||||
schedules.iter().map(|s| ReturnSchedule::from_schedule_ref(s, &mut pool_conn)).collect();
|
||||
schedules.into_iter().map(|s| ReturnSchedule::from_schedule(s, &mut pool_conn)).collect();
|
||||
|
||||
Ok(HttpResponse::Ok().json(return_schedules))
|
||||
}
|
||||
|
|
|
@ -22,10 +22,6 @@ impl ReturnSchedule {
|
|||
tags,
|
||||
}
|
||||
}
|
||||
|
||||
pub fn from_schedule_ref(schedule: &Schedule, conn: &mut PoolConnection<Sqlite>) -> Self {
|
||||
Self::from_schedule(schedule.clone(), conn)
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, Serialize)]
|
||||
|
@ -51,8 +47,4 @@ impl ReturnRelay {
|
|||
tags,
|
||||
}
|
||||
}
|
||||
|
||||
pub fn from_relay_ref(relay: &Relay, conn: &mut PoolConnection<Sqlite>) -> Self {
|
||||
Self::from_relay(relay.clone(), conn)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue