mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 22:46:55 +00:00
Merge pull request #4964 from nextcloud/enh/noid/fix-allowlist
nextcloud: fix APPS_ALLOWLIST
This commit is contained in:
commit
01fbe3dbc9
1 changed files with 3 additions and 1 deletions
|
|
@ -12,5 +12,7 @@ $CONFIG = array (
|
||||||
'writable' => true,
|
'writable' => true,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
'appsallowlist' => getenv('APPS_ALLOWLIST') ? explode(" ", getenv('APPS_ALLOWLIST')) : false,
|
|
||||||
);
|
);
|
||||||
|
if (getenv('APPS_ALLOWLIST') !== false) {
|
||||||
|
$CONFIG['appsallowlist'] = explode(" ", getenv('APPS_ALLOWLIST'));
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue