feat(core): add SOGoDisableExport option to disable export for mail, calendar and contacts

This commit is contained in:
Hivert Quentin
2023-11-03 18:20:12 +01:00
parent e0ef59d5f2
commit d0b4b50456
12 changed files with 152 additions and 49 deletions
+14
View File
@@ -376,6 +376,20 @@
return result;
}
- (BOOL) isCalendarExportEnabled {
BOOL result;
SOGoSystemDefaults *sd;
result = YES;
sd = [SOGoSystemDefaults sharedSystemDefaults];
if (nil != [sd disableExport]
&& NSNotFound != [[sd disableExport] indexOfObject: kDisableSharingCalendar]) {
result = NO;
}
return result;
}
@end
/* Component Viewer, parent class of Appointment Viewer and Task Viewer */