clean code with clippy

This commit is contained in:
philipp 2023-05-30 14:36:23 +02:00
parent 7fcae95b02
commit 9c30cda326
5 changed files with 8 additions and 17 deletions

View File

@ -46,6 +46,6 @@ LIMIT 1000
}
ret.push_str("</channel>");
ret.push_str("</rss>");
ret.replace("\n", "")
ret.replace('\n', "")
}
}

View File

@ -33,17 +33,8 @@ impl Day {
pub async fn new_guest(db: &SqlitePool, day: NaiveDate) -> Self {
let mut day = Self::new(db, day).await;
day.planned_events = day
.planned_events
.into_iter()
.filter(|e| e.planned_event.allow_guests)
.collect();
day.trips = day
.trips
.into_iter()
.filter(|t| t.trip.allow_guests)
.collect();
day.planned_events.retain(|e| e.planned_event.allow_guests);
day.trips.retain(|t| t.trip.allow_guests);
day
}

View File

@ -220,8 +220,8 @@ X-WR-CALNAME:Ruderausfahrten"#,
res.push_str(&format!("\nUID:{}@rudernlinz.at", event.id));
res.push_str(&format!(
"\nDTSTART;TZID=Europe/Vienna:{}T{}00",
event.day.replace("-", ""),
event.planned_starting_time.replace(":", "")
event.day.replace('-', ""),
event.planned_starting_time.replace(':', "")
));
res.push_str(&format!("\nSUMMARY:{}", event.name));

View File

@ -66,7 +66,7 @@ WHERE trip.id=?
cox: &CoxUser,
planned_event: &PlannedEvent,
) -> Result<(), CoxHelpError> {
if planned_event.is_rower_registered(db, &cox).await {
if planned_event.is_rower_registered(db, cox).await {
return Err(CoxHelpError::AlreadyRegisteredAsRower);
}

View File

@ -115,7 +115,7 @@ ORDER BY name
match user.pw.as_ref() {
Some(user_pw) => {
let password_hash = &Self::get_hashed_pw(&pw);
let password_hash = &Self::get_hashed_pw(pw);
if password_hash == user_pw {
return Ok(user);
}
@ -134,7 +134,7 @@ ORDER BY name
}
pub async fn update_pw(&self, db: &SqlitePool, pw: &str) {
let pw = Self::get_hashed_pw(&pw);
let pw = Self::get_hashed_pw(pw);
sqlx::query!("UPDATE user SET pw = ? where id = ?", pw, self.id)
.execute(db)
.await