Compare commits

..

No commits in common. "1783527f39081e77955388550765da4797c56eba" and "6fb27d52d6bcbf6426605b417f0cffe33530a359" 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 {