Feat: delete volume confirmation

This commit is contained in:
ayntk-ai
2024-09-04 22:33:47 +02:00
parent a7b78dcf41
commit 08df814408
2 changed files with 20 additions and 8 deletions

View File

@@ -3,6 +3,8 @@
namespace App\Livewire\Project\Shared\Storages;
use App\Models\LocalPersistentVolume;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Auth;
use Livewire\Component;
class Show extends Component
@@ -36,8 +38,14 @@ class Show extends Component
$this->dispatch('success', 'Storage updated successfully');
}
public function delete()
public function delete($password)
{
if (!Hash::check($password, Auth::user()->password)) {
$this->addError('password', 'The provided password is incorrect.');
return;
}
// Test deletion in more detail
$this->storage->delete();
$this->dispatch('refreshStorages');
}