Merge pull request #5295 from nextcloud/bugfix/5077/allow_proppatches_to_birthday_calendar

allow PropPatch requests to contact_birthdays
This commit is contained in:
Morris Jobke 2017-06-13 18:11:13 -05:00 committed by GitHub
commit f38f2baa5a
2 changed files with 11 additions and 0 deletions

View File

@ -122,7 +122,14 @@ class Calendar extends \Sabre\CalDAV\Calendar implements IShareable {
'principal' => $this->getOwner(), 'principal' => $this->getOwner(),
'protected' => true, 'protected' => true,
]; ];
} else {
$acl[] = [
'privilege' => '{DAV:}write-properties',
'principal' => $this->getOwner(),
'protected' => true,
];
} }
if ($this->getOwner() !== parent::getOwner()) { if ($this->getOwner() !== parent::getOwner()) {
$acl[] = [ $acl[] = [
'privilege' => '{DAV:}read', 'privilege' => '{DAV:}read',

View File

@ -191,6 +191,10 @@ class CalendarTest extends TestCase {
'privilege' => '{DAV:}read', 'privilege' => '{DAV:}read',
'principal' => $hasOwnerSet ? 'user1' : 'user2', 'principal' => $hasOwnerSet ? 'user1' : 'user2',
'protected' => true 'protected' => true
], [
'privilege' => '{DAV:}write-properties',
'principal' => $hasOwnerSet ? 'user1' : 'user2',
'protected' => true
]]; ]];
} }
if ($hasOwnerSet) { if ($hasOwnerSet) {