]> err.no Git - scalable-opengroupware.org/commitdiff
made contact objects private
authorhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Thu, 21 Jul 2005 16:03:31 +0000 (16:03 +0000)
committerhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Thu, 21 Jul 2005 16:03:31 +0000 (16:03 +0000)
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@882 d1b88da0-ebda-0310-925b-ed51d893ca5b

SOGo/SoObjects/Contacts/ChangeLog
SOGo/SoObjects/Contacts/Version
SOGo/SoObjects/Contacts/product.plist

index 3fa163299e8da7534d04db70feda75172af7b20d..25cb3299e5d0340dfc1cae7ffc8abaae859dc72f 100644 (file)
@@ -1,3 +1,7 @@
+2005-07-21  Helge Hess  <helge.hess@opengroupware.org>
+
+       * product.plist: make addressbook only available to owner (v0.9.15)
+
 2005-07-18  Helge Hess  <helge.hess@opengroupware.org>
 
        * SOGoContactObject.m: print an error log if a vCard could not be
index 756a577e142a6eb1e01ce607bea114bb63c945ba..e2bf6c08438f25c9d5d46d5514f36921da3649ff 100644 (file)
@@ -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
index 1f3e8b53170d1aa1db22e5d5b5027a3873c009b6..15e534316f3aee1f4e14bbd2e165d4ff3bf14ad6 100644 (file)
   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 = {
       };
     };