File "RoleManagerPolicy.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/fluentform/app/Http/Policies/RoleManagerPolicy.php
File size: 440 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace FluentForm\App\Http\Policies;

use FluentForm\App\Modules\Acl\Acl;
use FluentForm\Framework\Foundation\Policy;
use FluentForm\Framework\Request\Request;

class RoleManagerPolicy extends Policy
{
    public function verifyRequest(Request $request)
    {
        return Acl::hasPermission('fluentform_full_access');
    }
    public function index()
    {
        return Acl::hasPermission('fluentform_full_access');
    }
}