mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
Update isCertificateImportAllowed() check to new API
This commit is contained in:
parent
fb717f254f
commit
27bc781cba
1 changed files with 2 additions and 2 deletions
|
|
@ -120,8 +120,8 @@ class CertificateController extends Controller {
|
|||
protected function isCertificateImportAllowed() {
|
||||
$externalStorageEnabled = $this->appManager->isEnabledForUser('files_external');
|
||||
if ($externalStorageEnabled) {
|
||||
$backends = \OC_Mount_Config::getPersonalBackends();
|
||||
if (!empty($backends)) {
|
||||
$backendService = \OC_Mount_Config::$app->getContainer()->query('OCA\Files_External\Service\BackendService');
|
||||
if ($backendService->getBackendsVisibleFor(\OCA\Files_External\Service\BackendService::VISIBILITY_PERSONAL)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue