Add an accommodations reservations module #188

Merged
pierre merged 81 commits from accomodation_module into master 2024-06-22 21:30:26 +00:00
Showing only changes of commit 82dbf11b42 - Show all commits

View File

@ -22,7 +22,7 @@ impl UpdateReservationQuery {
) -> anyhow::Result<Option<&str>> { ) -> anyhow::Result<Option<&str>> {
if !a.open_to_reservations { if !a.open_to_reservations {
return Ok(Some( return Ok(Some(
"The accommodation is not open to reservations create / update!", "The accommodation is not open to reservations creation / update!",
)); ));
} }