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) {
|
2023-06-09 15:55:21 +02:00
|
|
|
return general_error_handler(err: $e, that: $this);
|
2023-05-25 22:33:47 +02:00
|
|
|
}
|
2023-04-28 15:08:48 +02:00
|
|
|
}
|
|
|
|
}
|