mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Remove calendar-proxy support - did this ever work?
This commit is contained in:
parent
cca2ade199
commit
a67f7ad1f3
2 changed files with 1 additions and 6 deletions
|
|
@ -147,8 +147,6 @@ class Principal implements BackendInterface {
|
|||
return $this->principalPrefix . '/' . $group->getGID();
|
||||
}, $groups);
|
||||
|
||||
// $groups[]= $this->principalPrefix . '/' . $name . '/calendar-proxy-read';
|
||||
// $groups[]= $this->principalPrefix . '/' . $name . '/calendar-proxy-write';
|
||||
return $groups;
|
||||
}
|
||||
return [];
|
||||
|
|
|
|||
|
|
@ -211,10 +211,7 @@ class Principal extends TestCase {
|
|||
->method('getUserGroups')
|
||||
->willReturn([]);
|
||||
|
||||
$expectedResponse = [
|
||||
'principals/users/foo/calendar-proxy-read',
|
||||
'principals/users/foo/calendar-proxy-write'
|
||||
];
|
||||
$expectedResponse = [];
|
||||
$response = $this->connector->getGroupMembership('principals/users/foo');
|
||||
$this->assertSame($expectedResponse, $response);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue