staging #374

Merged
philipp merged 5 commits from staging into main 2024-04-15 18:49:53 +02:00
Showing only changes of commit 0bc00472d7 - Show all commits

View File

@ -77,6 +77,14 @@ WHERE day = ? AND planned_starting_time = ?
return;
}
if Trip::find_by_trip_details(db, trip_details.id)
.await
.is_none()
{
// This trip_details belongs to a planned_event, no need to do anything
return;
};
let other_trips_same_time = Self::find_by_startingdatetime(
db,
self.day.clone(),