Monotone-Parent: bffd38536f21b982c86617f97c2dff0009e442e1

Monotone-Revision: d50828fc631dc9f6d731dcbde3c7ea33f6c422d9

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-04-24T22:37:21
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-04-24 22:37:21 +00:00
parent 3c915f8a2e
commit bc5b3a15ab
2 changed files with 13 additions and 0 deletions

View File

@@ -1,5 +1,9 @@
2007-04-24 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoAppointmentFolder.m
([SOGoAppointmentFolder -defaultAclRoles]): new overriden method
that defines default roles for new elements in the acl.
* UI/Scheduler/UIxCalUserRightsEditor.[hm]: new component class
module and subclass of UIxUserRightsEditor specific to the
handling of user rights on calendar folders.

View File

@@ -1216,4 +1216,13 @@ static NSNumber *sharedYes = nil;
return @"IPF.Appointment";
}
/* acls */
- (NSArray *) defaultAclRoles
{
return [NSArray arrayWithObjects:
SOGoCalendarRole_PublicViewer,
SOGoCalendarRole_PrivateDAndTViewer,
nil];
}
@end /* SOGoAppointmentFolder */