nextcloud/apps/dav/lib/caldav/calendarroot.php

10 lines
207 B
PHP
Raw Normal View History

2016-01-26 14:06:02 +03:00
<?php
namespace OCA\DAV\CalDAV;
class CalendarRoot extends \Sabre\CalDAV\CalendarRoot {
function getChildForPrincipal(array $principal) {
return new CalendarHome($this->caldavBackend, $principal);
}
}