reservations #335

Merged
philipp merged 6 commits from reservations into staging 2024-04-02 21:12:18 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 1783527f39 - Show all commits

View File

@ -62,7 +62,7 @@ impl Trip {
&user,
&format!(
"{} hat eine Ausfahrt zur selben Zeit ({} um {}) wie du erstellt",
user.name, trip.day, trip.planned_starting_time
cox.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 {
user: User,
pub(crate) user: User,
}
impl Deref for CoxUser {