mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
0c1fc0d904
* Wire up Create Entity Button to create route * Refactor permissions, we must also ensure the user company id and entity id matches at the Gate:: * Add translations for Status filters * Bug fix for initial list view not displaying * Apply actions to menu for list items * Wire up list view actions, individual * Place permission filters on datatable lists
26 lines
397 B
PHP
26 lines
397 B
PHP
<?php
|
|
|
|
namespace App\Policies;
|
|
|
|
use App\Models\Client;
|
|
use App\Models\User;
|
|
|
|
/**
|
|
* Class ClientPolicy
|
|
* @package App\Policies
|
|
*/
|
|
class ClientPolicy extends EntityPolicy
|
|
{
|
|
/**
|
|
* Checks if the user has create permissions
|
|
*
|
|
* @param User $user
|
|
* @return bool
|
|
*/
|
|
public function create(User $user) : bool
|
|
{
|
|
return $user->isAdmin() || $user->hasPermission('create_client');
|
|
}
|
|
|
|
}
|