aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/caldav/calendarroot.php
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);
	}
}