mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-02-04 04:56:52 +00:00
Camelize property AIO_URL => aioUrl
Signed-off-by: Pablo Zmdl <pablo@nextcloud.com>
This commit is contained in:
parent
62a21dd34a
commit
68f811b25f
2 changed files with 3 additions and 3 deletions
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue