mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
13 lines
243 B
PHP
13 lines
243 B
PHP
<?php
|
|
|
|
namespace App\Policies;
|
|
|
|
use App\Models\User;
|
|
|
|
class UserPolicy
|
|
{
|
|
public function destroy(User $currentUser, User $userToDestroy): bool
|
|
{
|
|
return $currentUser->is_admin && $currentUser->id !== $userToDestroy->id;
|
|
}
|
|
}
|