coolify/app/Http/Livewire/ForceUpgrade.php

21 lines
423 B
PHP
Raw Normal View History

2023-04-28 15:08:48 +02:00
<?php
namespace App\Http\Livewire;
2023-05-25 14:23:49 +02:00
use App\Jobs\InstanceAutoUpdateJob;
2023-04-28 15:08:48 +02:00
use Livewire\Component;
class ForceUpgrade extends Component
{
2023-05-26 12:24:59 +02:00
public bool $visible = false;
2023-04-28 15:08:48 +02:00
public function upgrade()
{
2023-05-25 22:33:47 +02:00
try {
2023-05-26 12:24:59 +02:00
$this->visible = true;
2023-05-25 22:59:33 +02:00
dispatch(new InstanceAutoUpdateJob(force: true));
2023-05-25 22:33:47 +02:00
} catch (\Exception $e) {
return general_error_handler($e, $this);
}
2023-04-28 15:08:48 +02:00
}
}