mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
da325e1797
* Add URL link directly to client view in list view * Implement Form requests for all client routes * Refactor how permissions are implemented on Datatable row action menus * fixes for tests
34 lines
636 B
PHP
34 lines
636 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Client;
|
|
|
|
use App\Http\Requests\Request;
|
|
use App\Models\Client;
|
|
|
|
class EditClientRequest extends Request
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
|
|
public function authorize()
|
|
{
|
|
return $this->user()->can('edit', $this->client);
|
|
//return true;
|
|
// return ! auth()->user(); //todo permissions
|
|
}
|
|
|
|
public function sanitize()
|
|
{
|
|
$input = $this->all();
|
|
|
|
//$input['id'] = $this->encodePrimaryKey($input['id']);
|
|
|
|
//$this->replace($input);
|
|
|
|
return $this->all();
|
|
}
|
|
|
|
} |