From: Bjoern Schiessle Date: Thu, 26 Mar 2015 17:32:46 +0000 (+0100) Subject: add remote share status to the config X-Git-Tag: v8.1.0alpha1~51^2~5 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=aab5f6b6df64001338d3214ece31b90251f13106;p=nextcloud-server.git add remote share status to the config --- 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 ) ) ),