From fd02219c833a47e4a3bbcfbabf62481ae86a246f Mon Sep 17 00:00:00 2001 From: Joao Patricio Date: Wed, 3 May 2023 07:53:50 +0100 Subject: [PATCH] wip --- app/Http/Livewire/Server/Proxy.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Http/Livewire/Server/Proxy.php b/app/Http/Livewire/Server/Proxy.php index b01db728c..fe3ed74f3 100644 --- a/app/Http/Livewire/Server/Proxy.php +++ b/app/Http/Livewire/Server/Proxy.php @@ -2,6 +2,7 @@ namespace App\Http\Livewire\Server; +use App\Enums\ActivityTypes; use App\Models\Server; use Livewire\Component; @@ -18,7 +19,7 @@ class Proxy extends Component public function runInstallProxy() { - $activity = remoteProcess(['ls -alh'], $this->server); + $activity = remoteProcess(['ls -alh'], $this->server, ActivityTypes::INLINE->value); $this->emit('newMonitorActivity', $activity->id); }