You've already forked Epicnabbo-Catalogus-Updated-Daily
🆙 Added fixed cms
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace App\Policies;
|
||||
|
||||
use Illuminate\Auth\Access\HandlesAuthorization;
|
||||
|
||||
class EmulatorSettingPolicy
|
||||
{
|
||||
use HandlesAuthorization;
|
||||
|
||||
public function viewAny()
|
||||
{
|
||||
return hasHousekeepingPermission('manage_emulator_settings');
|
||||
}
|
||||
|
||||
public function view()
|
||||
{
|
||||
return hasHousekeepingPermission('manage_emulator_settings');
|
||||
}
|
||||
|
||||
public function create()
|
||||
{
|
||||
return hasHousekeepingPermission('manage_emulator_settings');
|
||||
}
|
||||
|
||||
public function update()
|
||||
{
|
||||
return hasHousekeepingPermission('manage_emulator_settings');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user