1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2025-01-18 07:52:21 +01:00

in oc8 or later share_backend need to implement isShareTypeAllowed()

This commit is contained in:
Bjoern Schiessle 2014-12-10 15:43:17 +01:00
parent 511ac3d735
commit c5555e89c5
2 changed files with 8 additions and 0 deletions

View File

@ -127,4 +127,8 @@ class Addressbook implements \OCP\Share_Backend_Collection {
return $children;
}
public function isShareTypeAllowed($shareType) {
return true;
}
}

View File

@ -72,4 +72,8 @@ class Contact implements \OCP\Share_Backend {
return $contacts;
}
public function isShareTypeAllowed($shareType) {
return true;
}
}