diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2018-05-02 17:15:07 +0200 |
---|---|---|
committer | Bjoern Schiessle <bjoern@schiessle.org> | 2018-07-02 11:29:27 +0200 |
commit | 6208f250e88a15794ac5b7eeef6d701aa91e131b (patch) | |
tree | 7f8a5154a9d1bf9041e0e2fe074b7f6d79b1b5be /lib/public/Federation | |
parent | 4c8f3d6d77c5a6bb4a7eced86890039d15d9ca67 (diff) | |
download | nextcloud-server-6208f250e88a15794ac5b7eeef6d701aa91e131b.tar.gz nextcloud-server-6208f250e88a15794ac5b7eeef6d701aa91e131b.zip |
check if cloud federation api is ready
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'lib/public/Federation')
-rw-r--r-- | lib/public/Federation/ICloudFederationProviderManager.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/public/Federation/ICloudFederationProviderManager.php b/lib/public/Federation/ICloudFederationProviderManager.php index c9789949245..81558c631f7 100644 --- a/lib/public/Federation/ICloudFederationProviderManager.php +++ b/lib/public/Federation/ICloudFederationProviderManager.php @@ -93,5 +93,14 @@ interface ICloudFederationProviderManager { */ public function sendNotification(ICloudFederationNotification $notification); + /** + * check if the new cloud federation API is ready to be used + * + * @return bool + * + * @since 14.0.0 + */ + public function isReady(); + } |