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