This commit is contained in:
Andras Bacsai
2023-09-28 09:54:21 +02:00
parent 99c8607ff4
commit 199881c596
9 changed files with 30 additions and 478 deletions

View File

@@ -29,9 +29,7 @@ class FileStorage extends Component
$this->fs_path = Str::of($this->fs_path)->after('.');
$this->fs_path = $this->service->service->workdir() . $this->fs_path . "/" . $file;
}
if ($this->fileStorage->is_directory) {
$this->fs_path = Str::of($this->fileStorage->fs_path);
}
}
public function submit()
{

View File

@@ -29,12 +29,10 @@ class Index extends Component
$this->applications = $this->service->applications->sort();
$this->applications->each(function ($application) {
$application->refresh();
$application->configuration_required = $application->configurationRequired();
});
$this->databases = $this->service->databases->sort();
$this->databases->each(function ($database) {
$database->refresh();
$database->configuration_required = $database->configurationRequired();
});
}
public function mount()