-
Notifications
You must be signed in to change notification settings - Fork 60
Description
Hi,
Does the function FindCalendars( ) can reach the calendars shared with Sabre delegation ?
I use baikal, and i've done theses records like explain in the sabre's docs but i just see the calendars affected to the main user :
If you want to give user A access to user B's calendars, this means that principal/userA needs to be part of the principal/userB/calendar-proxy-write group.
To do this through the database, you need to look up the id for principal/userA and principal/userB/calendar-proxy-write. You add these id's to the groupmembers table.
The id for principal/userA will become the member_id field value, and the id for principal/userB/calendar-proxy-write should be put in the principal_id field.
http://sabre.io/dav/caldav-proxy/
This is my code
$client = new SimpleCalDAVClient();
$client->connect('http://baikalserver.example/cal.php/calendars/userB/default', 'userA', 'userApassword');
$client->findCalendars();