chore: cleanup dead code + format with Pint
- Remove unused FeaturesController (empty stubs, no routes) - Remove ConvertSpatialFile CLI command (unused; service used in LayerManager) - Remove MigrateGeojsonToFeatures CLI command (one-shot migration, not referenced) - Remove .claude/worktrees/ (11 old agent worktrees from June) - Apply Laravel Pint formatting across 219 files (style only, no functional changes) Tests: 101 passing (319 assertions) API routes: unchanged (8 routes intact)
This commit is contained in:
@@ -2,14 +2,15 @@
|
||||
|
||||
namespace App\Livewire\Users;
|
||||
|
||||
use Livewire\Component;
|
||||
use App\Models\User;
|
||||
use Spatie\Permission\Models\Role;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
use Livewire\Component;
|
||||
use Spatie\Permission\Models\Role;
|
||||
|
||||
class AdminUsers extends Component
|
||||
{
|
||||
public string $search = '';
|
||||
|
||||
public $roles;
|
||||
|
||||
public function mount(): void
|
||||
@@ -21,10 +22,9 @@ class AdminUsers extends Component
|
||||
public function getUsersProperty()
|
||||
{
|
||||
return User::with('roles')
|
||||
->when($this->search, fn($q) =>
|
||||
$q->where(fn($q2) => $q2
|
||||
->where('name', 'like', '%' . $this->search . '%')
|
||||
->orWhere('email', 'like', '%' . $this->search . '%')))
|
||||
->when($this->search, fn ($q) => $q->where(fn ($q2) => $q2
|
||||
->where('name', 'like', '%'.$this->search.'%')
|
||||
->orWhere('email', 'like', '%'.$this->search.'%')))
|
||||
->orderBy('name')
|
||||
->get();
|
||||
}
|
||||
@@ -33,6 +33,7 @@ class AdminUsers extends Component
|
||||
{
|
||||
if ($userId === Auth::id()) {
|
||||
$this->dispatch('notify', 'No puedes eliminarte a ti mismo.');
|
||||
|
||||
return;
|
||||
}
|
||||
User::findOrFail($userId)->delete();
|
||||
|
||||
Reference in New Issue
Block a user