From d8fab6bb21300bd3760d8b271da281c111fe537c Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Thu, 16 Jan 2020 10:43:42 -0500 Subject: [PATCH] fix(calendar): restore [SOGoAppointmentObject resourceHasAutoAccepted] Fixes #4923 --- SoObjects/Appointments/SOGoAppointmentObject.m | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/SoObjects/Appointments/SOGoAppointmentObject.m b/SoObjects/Appointments/SOGoAppointmentObject.m index b5bd8b739c..0143992fb3 100644 --- a/SoObjects/Appointments/SOGoAppointmentObject.m +++ b/SoObjects/Appointments/SOGoAppointmentObject.m @@ -2532,4 +2532,9 @@ - (id) PUTAction: (WOContext *) _ctx return response; } +- (BOOL) resourceHasAutoAccepted +{ + return _resourceHasAutoAccepted; +} + @end /* SOGoAppointmentObject */