feat: email reminder about pending feedbacks for hotel managers

This commit is contained in:
Björn Fromme
2023-12-07 16:20:09 +01:00
parent aee17c63b9
commit ab066c4656
8 changed files with 292 additions and 152 deletions
+8
View File
@@ -157,6 +157,14 @@ class DispositionRepository extends ServiceEntityRepository
return $qb->getQuery();
}
public function getPendingFeedbacks(): array
{
return $this
->getPendingFeedbackQuery()
->getResult()
;
}
public function getPendingFeedbackByHotelBusProIds(array $hotelBusProIds): array
{
return $this