From 5387b5d5a3396368629f9cdc81344ed1733e2f41 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Wed, 24 Feb 2016 16:47:07 -0500 Subject: [PATCH] Expose listRequiresDot in SOGoContactSourceFolder --- SoObjects/Contacts/SOGoContactSourceFolder.h | 4 +++- SoObjects/Contacts/SOGoContactSourceFolder.m | 7 ++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/SoObjects/Contacts/SOGoContactSourceFolder.h b/SoObjects/Contacts/SOGoContactSourceFolder.h index ccf3ce57f..7d45d3134 100644 --- a/SoObjects/Contacts/SOGoContactSourceFolder.h +++ b/SoObjects/Contacts/SOGoContactSourceFolder.h @@ -1,6 +1,6 @@ /* SOGoContactSourceFolder.h - this file is part of SOGo * - * Copyright (C) 2006-2013 Inverse inc. + * Copyright (C) 2006-2016 Inverse inc. * * This file is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -49,6 +49,8 @@ - (void) setIsPersonalSource: (BOOL) isPersonal; - (BOOL) isPersonalSource; +- (BOOL) listRequiresDot; + @end diff --git a/SoObjects/Contacts/SOGoContactSourceFolder.m b/SoObjects/Contacts/SOGoContactSourceFolder.m index b41343f29..857c5362c 100644 --- a/SoObjects/Contacts/SOGoContactSourceFolder.m +++ b/SoObjects/Contacts/SOGoContactSourceFolder.m @@ -1,6 +1,6 @@ /* SOGoContactSourceFolder.m - this file is part of SOGo * - * Copyright (C) 2006-2015 Inverse inc. + * Copyright (C) 2006-2016 Inverse inc. * * This file is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -113,6 +113,11 @@ return isPersonalSource; } +- (BOOL) listRequiresDot +{ + return [source listRequiresDot]; +} + - (NSString *) groupDavResourceType { return @"vcard-collection";