Welcome to mirror list, hosted at ThFree Co, Russian Federation.

calendarroot.php « caldav « lib « dav « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae5fc54cdf3827142c72288f0177cc7ca4a5c7a5 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

namespace OCA\DAV\CalDAV;

class CalendarRoot extends \Sabre\CalDAV\CalendarRoot {

	function getChildForPrincipal(array $principal) {
		return new CalendarHome($this->caldavBackend, $principal);
	}
}