From 3689b58b92ad9ea921861efe560d8c677ea39e8c Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 9 Feb 2024 13:51:31 +0100 Subject: [PATCH] Add success message for cleanup_queue --- app/Livewire/Dashboard.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Livewire/Dashboard.php b/app/Livewire/Dashboard.php index 696ae09c4..a44cd18af 100644 --- a/app/Livewire/Dashboard.php +++ b/app/Livewire/Dashboard.php @@ -22,6 +22,7 @@ class Dashboard extends Component } public function cleanup_queue() { + $this->dispatch('success', 'Cleanup started.'); Artisan::queue('app:init', [ '--cleanup-deployments' => 'true' ]);