diff options
author | Joas Schilling <coding@schilljs.com> | 2020-06-24 16:49:16 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2020-06-24 16:49:16 +0200 |
commit | 89ed2c37bf656ceb772bb6759c8977a7dc78b3fb (patch) | |
tree | 4a467f829fcc748531cad54e7c08e06dd98d1b7d /lib/private/Collaboration/Collaborators/RemoteGroupPlugin.php | |
parent | 654cd18864c943d9ff93c2e6151bb6529fa44513 (diff) | |
download | nextcloud-server-89ed2c37bf656ceb772bb6759c8977a7dc78b3fb.tar.gz nextcloud-server-89ed2c37bf656ceb772bb6759c8977a7dc78b3fb.zip |
Update share type constant usage
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/Collaboration/Collaborators/RemoteGroupPlugin.php')
-rw-r--r-- | lib/private/Collaboration/Collaborators/RemoteGroupPlugin.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/Collaboration/Collaborators/RemoteGroupPlugin.php b/lib/private/Collaboration/Collaborators/RemoteGroupPlugin.php index 777af6093db..17e7793a685 100644 --- a/lib/private/Collaboration/Collaborators/RemoteGroupPlugin.php +++ b/lib/private/Collaboration/Collaborators/RemoteGroupPlugin.php @@ -30,6 +30,7 @@ use OCP\Collaboration\Collaborators\SearchResultType; use OCP\Federation\ICloudFederationProviderManager; use OCP\Federation\ICloudIdManager; use OCP\Share; +use OCP\Share\IShare; class RemoteGroupPlugin implements ISearchPlugin { protected $shareeEnumeration; @@ -63,7 +64,7 @@ class RemoteGroupPlugin implements ISearchPlugin { 'guid' => $remoteGroup, 'name' => $remoteGroup, 'value' => [ - 'shareType' => Share::SHARE_TYPE_REMOTE_GROUP, + 'shareType' => IShare::TYPE_REMOTE_GROUP, 'shareWith' => $search, 'server' => $serverUrl, ], |