From 5df57e72217288aa73af52a4996d8fa6ea64594b Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Mon, 22 Oct 2007 13:50:49 +0000 Subject: [PATCH] Monotone-Parent: 4de39ef2fdd0658acc4b5b2fc0da7e23c68159eb Monotone-Revision: 5d835533f52a26e3b8bb1a2570a4ac5d20e8e7a6 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-10-22T13:50:49 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 6 ++++++ SoObjects/SOGo/SOGoContentObject.m | 2 ++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 33493d6da..7b46d4088 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-10-22 Wolfgang Sourdeau + + * SoObjects/SOGo/SOGoContentObject.m ([SOGoContentObject + -aclsForUser:uid]): object inherits the 'SOGoRole_ObjectEditor' + role from its parent folder. + 2007-10-19 Francis Lachapelle * SoObjects/SOGo/SOGoUser.m diff --git a/SoObjects/SOGo/SOGoContentObject.m b/SoObjects/SOGo/SOGoContentObject.m index 255db3b65..00ed0779e 100644 --- a/SoObjects/SOGo/SOGoContentObject.m +++ b/SoObjects/SOGo/SOGoContentObject.m @@ -382,6 +382,8 @@ } if ([containerAcls containsObject: SOGoRole_ObjectReader]) [acls addObject: SOGoRole_ObjectViewer]; + if ([containerAcls containsObject: SOGoRole_ObjectEditor]) + [acls addObject: SOGoRole_ObjectEditor]; } return acls;