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
commit ce6b85b8f0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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');
}