Skip to content
Snippets Groups Projects
Commit 932e64f7 authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #19602 from owncloud/allow-certificate-import

Fix importing of certificates
parents 79524ce1 6c798889
No related branches found
No related tags found
No related merge requests found
...@@ -122,8 +122,9 @@ class CertificateController extends Controller { ...@@ -122,8 +122,9 @@ class CertificateController extends Controller {
protected function isCertificateImportAllowed() { protected function isCertificateImportAllowed() {
$externalStorageEnabled = $this->appManager->isEnabledForUser('files_external'); $externalStorageEnabled = $this->appManager->isEnabledForUser('files_external');
if ($externalStorageEnabled) { if ($externalStorageEnabled) {
$backendService = \OC_Mount_Config::$app->getContainer()->query('OCA\Files_External\Service\BackendService'); /** @var \OCA\Files_External\Service\BackendService $backendService */
if ($backendService->getBackendsVisibleFor(\OCA\Files_External\Service\BackendService::VISIBILITY_PERSONAL)) { $backendService = \OC_Mount_Config::$app->getContainer()->query('\OCA\Files_External\Service\BackendService');
if ($backendService->isUserMountingAllowed()) {
return true; return true;
} }
} }
......
...@@ -119,7 +119,9 @@ $clients = array( ...@@ -119,7 +119,9 @@ $clients = array(
$enableCertImport = false; $enableCertImport = false;
$externalStorageEnabled = \OC::$server->getAppManager()->isEnabledForUser('files_external'); $externalStorageEnabled = \OC::$server->getAppManager()->isEnabledForUser('files_external');
if ($externalStorageEnabled) { if ($externalStorageEnabled) {
$enableCertImport = true; /** @var \OCA\Files_External\Service\BackendService $backendService */
$backendService = \OC_Mount_Config::$app->getContainer()->query('\OCA\Files_External\Service\BackendService');
$enableCertImport = $backendService->isUserMountingAllowed();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment