You've already forked Epicnabbo-Catalogus-Updated-Daily
17 lines
283 B
PHP
17 lines
283 B
PHP
<?php
|
|
|
|
namespace App\Policies;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Auth\Access\HandlesAuthorization;
|
|
|
|
class CommandLogPolicy
|
|
{
|
|
use HandlesAuthorization;
|
|
|
|
public function viewAny(User $user): bool
|
|
{
|
|
return hasHousekeepingPermission('manage_commandlogs');
|
|
}
|
|
}
|