mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-02-04 13:06:53 +00:00
Camelize property nextcloud_max_time => nextcloudMaxTime
Signed-off-by: Pablo Zmdl <pablo@nextcloud.com>
This commit is contained in:
parent
41c92b814f
commit
efe8317446
2 changed files with 3 additions and 3 deletions
|
|
@ -130,7 +130,7 @@ $app->get('/containers', function (Request $request, Response $response, array $
|
|||
'nextcloud_datadir' => $configurationManager->nextcloud_datadir_mount,
|
||||
'nextcloud_mount' => $configurationManager->nextcloud_mount,
|
||||
'nextcloud_upload_limit' => $configurationManager->nextcloud_upload_limit,
|
||||
'nextcloud_max_time' => $configurationManager->nextcloud_max_time,
|
||||
'nextcloud_max_time' => $configurationManager->nextcloudMaxTime,
|
||||
'nextcloud_memory_limit' => $configurationManager->nextcloud_memory_limit,
|
||||
'is_dri_device_enabled' => $configurationManager->isDriDeviceEnabled(),
|
||||
'is_nvidia_gpu_enabled' => $configurationManager->isNvidiaGpuEnabled(),
|
||||
|
|
|
|||
|
|
@ -652,7 +652,7 @@ class ConfigurationManager
|
|||
return $uploadLimit * 1024 * 1024 * 1024;
|
||||
}
|
||||
|
||||
public string $nextcloud_max_time {
|
||||
public string $nextcloudMaxTime {
|
||||
get => $this->GetEnvironmentalVariableOrConfig('NEXTCLOUD_MAX_TIME', 'nextcloud_max_time', '3600');
|
||||
set { $this->set('nextcloud_max_time', $value); }
|
||||
}
|
||||
|
|
@ -1076,7 +1076,7 @@ class ConfigurationManager
|
|||
'DOCKER_SOCKET_PROXY_ENABLED' => $this->isDockerSocketProxyEnabled ? 'yes' : '',
|
||||
'NEXTCLOUD_UPLOAD_LIMIT' => $this->nextcloud_upload_limit,
|
||||
'NEXTCLOUD_MEMORY_LIMIT' => $this->nextcloud_memory_limit,
|
||||
'NEXTCLOUD_MAX_TIME' => $this->nextcloud_max_time,
|
||||
'NEXTCLOUD_MAX_TIME' => $this->nextcloudMaxTime,
|
||||
'BORG_RETENTION_POLICY' => $this->GetBorgRetentionPolicy(),
|
||||
'FULLTEXTSEARCH_JAVA_OPTIONS' => $this->GetFulltextsearchJavaOptions(),
|
||||
'NEXTCLOUD_TRUSTED_CACERTS_DIR' => $this->GetTrustedCacertsDir(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue