mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-01 13:16:23 +00:00
Monotone-Parent: 40c106f6426b8e1f4943286f3f606ecd1f013ced
Monotone-Revision: 65e073a1a7c3638a4e473b21d5bb1d6818959ed1 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-05-19T00:42:51 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
2007-05-18 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/SOGo/SOGoContentObject.m ([SOGoContentObject
|
||||
-hasSupportForDefaultRoles]): override method by returning "YES".
|
||||
|
||||
* SoObjects/SOGo/NSArray+Utilities.m ([NSMutableArray
|
||||
-addObjectUniquely:object]): new method with an explicit name.
|
||||
|
||||
|
||||
@@ -218,9 +218,9 @@
|
||||
: 0 /* 0 means 'do not check' */;
|
||||
|
||||
/* attempt a save */
|
||||
|
||||
if ((error = [self saveContentString:[rq contentAsString]
|
||||
baseVersion:baseVersion]) != nil)
|
||||
|
||||
if ((error = [self saveContentString: [rq contentAsString]
|
||||
baseVersion: baseVersion]) != nil)
|
||||
return error;
|
||||
|
||||
/* setup response */
|
||||
@@ -303,9 +303,9 @@
|
||||
|
||||
/* acls */
|
||||
|
||||
- (NSArray *) acls
|
||||
- (NSArray *) aclUsers
|
||||
{
|
||||
return [container aclsForObjectAtPath: [self pathArrayToSoObject]];
|
||||
return [container aclUsersForObjectAtPath: [self pathArrayToSoObject]];
|
||||
}
|
||||
|
||||
- (NSArray *) aclsForUser: (NSString *) uid
|
||||
@@ -343,6 +343,11 @@
|
||||
forObjectAtPath: [self pathArrayToSoObject]];
|
||||
}
|
||||
|
||||
- (BOOL) hasSupportForDefaultRoles
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
|
||||
/* message type */
|
||||
|
||||
- (NSString *) outlookMessageClass
|
||||
|
||||
Reference in New Issue
Block a user