Compare commits

..

No commits in common. "32b2185e9428c64765648fe4f59a713054f33a1e" and "092dba3f4bbbb1ee8b7e742018cdd522f00b22e3" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ impl Trip {
&user,
&format!(
"{} 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(),
None,

View File

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