# fluent-boards/2.1.0/app/Http/Policies/BasePolicy.php

FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration, version 2.1.0. 25 lines.

- Page: https://pluginprobe.com/plugins/fluent-boards/2.1.0/code/app/Http/Policies/BasePolicy.php
- Raw: https://pluginprobe.com/plugins/fluent-boards/2.1.0/raw/app/Http/Policies/BasePolicy.php
- Modified: 2024-05-31T06:41:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-boards/2.1.0/code/app/Http/Policies/BasePolicy.php#L10-L20`.

```php
<?php

namespace FluentBoards\App\Http\Policies;

use FluentBoards\Framework\Foundation\Policy;
use FluentBoards\Framework\Http\Request\Request;

/**
 *  BasePolicy - REST API Permission Policy
 *
 *
 * @version 1.0.0
 */
class BasePolicy extends Policy
{
    /**
     * @param  Request  $request
     * @return true
     */
    public function verifyRequest(Request $request)
    {
        return true;
    }
}

```
