From 8560e5a3f835c92b6142bf0bc58149dabd3012b2 Mon Sep 17 00:00:00 2001 From: helge Date: Thu, 21 Jul 2005 16:03:31 +0000 Subject: [PATCH] made contact objects private git-svn-id: http://svn.opengroupware.org/SOGo/trunk@882 d1b88da0-ebda-0310-925b-ed51d893ca5b --- SOGo/SoObjects/Contacts/ChangeLog | 4 ++++ SOGo/SoObjects/Contacts/Version | 2 +- SOGo/SoObjects/Contacts/product.plist | 14 ++++++++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/SOGo/SoObjects/Contacts/ChangeLog b/SOGo/SoObjects/Contacts/ChangeLog index 3fa16329..25cb3299 100644 --- a/SOGo/SoObjects/Contacts/ChangeLog +++ b/SOGo/SoObjects/Contacts/ChangeLog @@ -1,3 +1,7 @@ +2005-07-21 Helge Hess + + * product.plist: make addressbook only available to owner (v0.9.15) + 2005-07-18 Helge Hess * SOGoContactObject.m: print an error log if a vCard could not be diff --git a/SOGo/SoObjects/Contacts/Version b/SOGo/SoObjects/Contacts/Version index 756a577e..e2bf6c08 100644 --- a/SOGo/SoObjects/Contacts/Version +++ b/SOGo/SoObjects/Contacts/Version @@ -1,6 +1,6 @@ # version file -SUBMINOR_VERSION:=14 +SUBMINOR_VERSION:=15 # v0.9.12 requires libSOGo v0.9.54 # v0.9.9 requires libGDLContentStore v4.5.26 diff --git a/SOGo/SoObjects/Contacts/product.plist b/SOGo/SoObjects/Contacts/product.plist index 1f3e8b53..15e53431 100644 --- a/SOGo/SoObjects/Contacts/product.plist +++ b/SOGo/SoObjects/Contacts/product.plist @@ -10,10 +10,24 @@ classes = { SOGoContactFolder = { superclass = "SOGoFolder"; + + protectedBy = "View"; + defaultAccess = "allow"; /* I think this affects key lookup */ + defaultRoles = { + "View" = "Owner"; + "WebDAV Access" = "Owner"; + }; }; SOGoContactObject = { superclass = "SOGoContentObject"; + protectedBy = "View"; + defaultAccess = "allow"; /* I think this affects key lookup */ + defaultRoles = { + "View" = "Owner"; + "WebDAV Access" = "Owner"; + }; + methods = { }; }; -- 2.39.5