Compare commits
No commits in common. "70e209f1ceb5aa8396443f07761fa78b0760a51e" and "9be23ff723922f2f08009f5c8844ee519849db3a" have entirely different histories.
70e209f1ce
...
9be23ff723
@ -76,6 +76,10 @@ WHERE trip.id=?
|
|||||||
return Err(CoxHelpError::DetailsLocked);
|
return Err(CoxHelpError::DetailsLocked);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if planned_event.is_rower_registered(db, cox).await {
|
||||||
|
return Err(CoxHelpError::AlreadyRegisteredAsRower);
|
||||||
|
}
|
||||||
|
|
||||||
match sqlx::query!(
|
match sqlx::query!(
|
||||||
"INSERT INTO trip (cox_id, planned_event_id) VALUES(?, ?)",
|
"INSERT INTO trip (cox_id, planned_event_id) VALUES(?, ?)",
|
||||||
cox.id,
|
cox.id,
|
||||||
@ -136,7 +140,14 @@ WHERE day=?
|
|||||||
return Err(TripUpdateError::NotYourTrip);
|
return Err(TripUpdateError::NotYourTrip);
|
||||||
}
|
}
|
||||||
|
|
||||||
let Some(trip_details_id) = trip.trip_details_id else {
|
let trip_details = sqlx::query!(
|
||||||
|
"SELECT trip_details_id as id FROM trip WHERE id = ?",
|
||||||
|
trip.id
|
||||||
|
)
|
||||||
|
.fetch_one(db)
|
||||||
|
.await
|
||||||
|
.unwrap(); //Okay, as trip can only be created with proper DB backing
|
||||||
|
let Some(trip_details_id) = trip_details.id else {
|
||||||
return Err(TripUpdateError::TripDetailsDoesNotExist); //TODO: Remove?
|
return Err(TripUpdateError::TripDetailsDoesNotExist); //TODO: Remove?
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user