add new public repo

This commit is contained in:
Andras Bacsai
2023-04-25 14:43:35 +02:00
parent dd51b002b8
commit 6135c139da
42 changed files with 495 additions and 210 deletions

View File

@@ -24,7 +24,7 @@ class Deploy extends Component
public function mount()
{
$this->parameters = Route::current()->parameters();
$this->application = Application::find($this->applicationId)->first();
$this->application = Application::where('id', $this->applicationId)->first();
$this->destination = $this->application->destination->getMorphClass()::where('id', $this->application->destination->id)->first();
}
protected function setDeploymentUuid()

View File

@@ -36,7 +36,8 @@ class General extends Component
'application.build_pack' => 'required',
'application.base_directory' => 'required',
'application.publish_directory' => 'nullable',
'application.ports_exposes' => 'nullable',
'application.ports_exposes' => 'required',
'application.ports_mappings' => 'nullable',
];
public function instantSave()
{
@@ -54,7 +55,7 @@ class General extends Component
}
public function mount()
{
$this->application = Application::find($this->applicationId)->with('destination', 'settings')->first();
$this->application = Application::where('id', $this->applicationId)->with('destination', 'settings')->firstOrFail();
$this->is_git_submodules_allowed = $this->application->settings->is_git_submodules_allowed;
$this->is_git_lfs_allowed = $this->application->settings->is_git_lfs_allowed;
$this->is_debug = $this->application->settings->is_debug;
@@ -64,7 +65,6 @@ class General extends Component
$this->is_http2 = $this->application->settings->is_http2;
$this->is_auto_deploy = $this->application->settings->is_auto_deploy;
$this->is_dual_cert = $this->application->settings->is_dual_cert;
}
public function submit()
{

View File

@@ -17,6 +17,6 @@ class Source extends Component
];
public function mount()
{
$this->application = Application::find($this->applicationId)->first();
$this->application = Application::where('id', $this->applicationId)->first();
}
}