Compare commits

..

No commits in common. "e7a679541baac5e45e34639626cfc05a9699a615" and "6044aed46f5b46b35b2fe753026f699c166394c4" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ impl Trip {
&user, &user,
&format!( &format!(
"{} hat eine Ausfahrt zur selben Zeit ({} um {}) wie du erstellt", "{} hat eine Ausfahrt zur selben Zeit ({} um {}) wie du erstellt",
cox.user.name, trip.day, trip.planned_starting_time user.name, trip.day, trip.planned_starting_time
), ),
"Neue Ausfahrt zur selben Zeit".into(), "Neue Ausfahrt zur selben Zeit".into(),
None, None,

View File

@ -733,7 +733,7 @@ impl<'r> FromRequest<'r> for TechUser {
} }
pub struct CoxUser { pub struct CoxUser {
pub(crate) user: User, user: User,
} }
impl Deref for CoxUser { impl Deref for CoxUser {