From aab5f6b6df64001338d3214ece31b90251f13106 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 26 Mar 2015 18:32:46 +0100 Subject: [PATCH] add remote share status to the config --- core/js/config.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/js/config.php b/core/js/config.php index b57289fde48..d9a77b368ba 100644 --- a/core/js/config.php +++ b/core/js/config.php @@ -58,6 +58,9 @@ if ($defaultExpireDateEnabled) { $value = \OCP\Config::getAppValue('core', 'shareapi_enforce_expire_date', 'no'); $enforceDefaultExpireDate = ($value === 'yes') ? true : false; } +$appConfig = \OC::$server->getAppConfig(); +$result = $appConfig->getValue('files_sharing', 'outgoing_server2server_share_enabled', 'yes'); +$outgoingServer2serverShareEnabled = ($result === 'yes') ? true : false; $array = array( "oc_debug" => (defined('DEBUG') && DEBUG) ? 'true' : 'false', @@ -110,6 +113,7 @@ $array = array( 'enforcePasswordForPublicLink' => \OCP\Util::isPublicLinkPasswordRequired(), 'sharingDisabledForUser' => \OCP\Util::isSharingDisabledForUser(), 'resharingAllowed' => \OCP\Share::isResharingAllowed(), + 'remoteShareAllowed' => $outgoingServer2serverShareEnabled ) ) ), -- 2.39.5