diff options
author | Joas Schilling <coding@schilljs.com> | 2016-11-02 11:04:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-02 11:04:33 +0100 |
commit | 7da3ba3f91f561da664fc601b29cd7948f876f3f (patch) | |
tree | 8e320070d69622432fdf8ab641b36b160a901533 /lib/public | |
parent | 42b0a0d2afe95b974545436e112a1d97edaeeb1a (diff) | |
parent | f2b2b8d8940b2487d7f9f3a3a304a6a95d145fd2 (diff) | |
download | nextcloud-server-7da3ba3f91f561da664fc601b29cd7948f876f3f.tar.gz nextcloud-server-7da3ba3f91f561da664fc601b29cd7948f876f3f.zip |
Merge pull request #657 from nextcloud/share-by-mail
New share provider: Share by mail
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Share/IManager.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/public/Share/IManager.php b/lib/public/Share/IManager.php index a74ab5fe796..137dc309280 100644 --- a/lib/public/Share/IManager.php +++ b/lib/public/Share/IManager.php @@ -286,4 +286,12 @@ interface IManager { */ public function outgoingServer2ServerSharesAllowed(); + /** + * Check if a given share provider exists + * @param int $shareType + * @return bool + * @since 9.2.0 + */ + public function shareProviderExists($shareType); + } |