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