TF-4102 Don't display free-busy on IMIP responses (accepted, tentative, rejected)
This commit is contained in:
@@ -437,6 +437,17 @@ extension CalendarEventExtension on CalendarEvent {
|
||||
}
|
||||
}
|
||||
|
||||
bool isIMIPResponsesAvailable(List<String> listEmailAddressSender) {
|
||||
final participationStatus = findAttendeeHasUpdatedStatus(
|
||||
listEmailAddressSender,
|
||||
)?.participationStatus?.value;
|
||||
|
||||
return method == EventMethod.reply &&
|
||||
(participationStatus == acceptedParticipationStatus ||
|
||||
participationStatus == tentativeParticipationStatus ||
|
||||
participationStatus == declinedParticipationStatus);
|
||||
}
|
||||
|
||||
CalendarEvent copyWith({
|
||||
EventId? eventId,
|
||||
String? title,
|
||||
|
||||
Reference in New Issue
Block a user