Camelize property AIO_URL => aioUrl

Signed-off-by: Pablo Zmdl <pablo@nextcloud.com>
This commit is contained in:
Pablo Zmdl 2026-01-23 17:17:54 +01:00
parent 62a21dd34a
commit 68f811b25f
2 changed files with 3 additions and 3 deletions

View file

@ -186,7 +186,7 @@ readonly class DockerController {
$this->configurationManager->startTransaction();
$this->configurationManager->install_latest_major = $install_latest_major;
// set AIO_URL
$this->configurationManager->AIO_URL = $host . ':' . (string)$port . $path;
$this->configurationManager->aioUrl = $host . ':' . (string)$port . $path;
// set wasStartButtonClicked
$this->configurationManager->wasStartButtonClicked = true;
$this->configurationManager->commitTransaction();

View file

@ -57,7 +57,7 @@ class ConfigurationManager
set { $this->set('instance_restore_attempt', $value); }
}
public string $AIO_URL {
public string $aioUrl {
get => $this->get('AIO_URL', '');
set { $this->set('AIO_URL', $value); }
}
@ -1048,7 +1048,7 @@ class ConfigurationManager
'AIO_TOKEN' => $this->aioToken,
'BORGBACKUP_REMOTE_REPO' => $this->borg_remote_repo,
'BORGBACKUP_MODE' => $this->backupMode,
'AIO_URL' => $this->AIO_URL,
'AIO_URL' => $this->aioUrl,
'SELECTED_RESTORE_TIME' => $this->selectedRestoreTime,
'RESTORE_EXCLUDE_PREVIEWS' => $this->restoreExcludePreviews ? '1' : '',
'APACHE_PORT' => $this->apache_port,