Merge pull request #6684 from nextcloud/enh/noid/allow-configure-custom-appstoreurl

nextcloud apps.config: allow to configure custom appstoreurl
This commit is contained in:
Simon L.
2025-07-24 13:49:11 +02:00
committed by GitHub

View File

@@ -16,3 +16,6 @@ $CONFIG = array (
if (getenv('APPS_ALLOWLIST')) {
$CONFIG['appsallowlist'] = explode(" ", getenv('APPS_ALLOWLIST'));
}
if (getenv('NEXTCLOUD_APP_STORE_URL')) {
$CONFIG['appstoreurl'] = getenv('NEXTCLOUD_APP_STORE_URL');
}