fix: if app settings is not saved to db

This commit is contained in:
Andras Bacsai 2023-10-01 17:39:57 +02:00
parent aefdc76805
commit 5c45908087

View File

@ -104,13 +104,15 @@ public function getWildcardDomain() {
} }
public function mount() public function mount()
{ {
$this->is_static = $this->application->settings->is_static; if (data_get($this->application,'settings')) {
$this->is_git_submodules_enabled = $this->application->settings->is_git_submodules_enabled; $this->is_static = $this->application->settings->is_static;
$this->is_git_lfs_enabled = $this->application->settings->is_git_lfs_enabled; $this->is_git_submodules_enabled = $this->application->settings->is_git_submodules_enabled;
$this->is_debug_enabled = $this->application->settings->is_debug_enabled; $this->is_git_lfs_enabled = $this->application->settings->is_git_lfs_enabled;
$this->is_preview_deployments_enabled = $this->application->settings->is_preview_deployments_enabled; $this->is_debug_enabled = $this->application->settings->is_debug_enabled;
$this->is_auto_deploy_enabled = $this->application->settings->is_auto_deploy_enabled; $this->is_preview_deployments_enabled = $this->application->settings->is_preview_deployments_enabled;
$this->is_force_https_enabled = $this->application->settings->is_force_https_enabled; $this->is_auto_deploy_enabled = $this->application->settings->is_auto_deploy_enabled;
$this->is_force_https_enabled = $this->application->settings->is_force_https_enabled;
}
} }
public function submit() public function submit()