You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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();
The text was updated successfully, but these errors were encountered:
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 :
This is my code
The text was updated successfully, but these errors were encountered: