Merge pull request #26914 from nextcloud/fix/caldav-get-shares-unused-param
Drop the unused second parameter on \OCA\DAV\CalDAV\CalDavBackend::getShares
This commit is contained in:
commit
6a14f82c1f
|
@ -2550,10 +2550,9 @@ class CalDavBackend extends AbstractBackend implements SyncSupport, Subscription
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param int $resourceId
|
* @param int $resourceId
|
||||||
* @param int $calendarType
|
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function getShares($resourceId, $calendarType = self::CALENDAR_TYPE_CALENDAR) {
|
public function getShares($resourceId) {
|
||||||
return $this->calendarSharingBackend->getShares($resourceId);
|
return $this->calendarSharingBackend->getShares($resourceId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue