invoiceninja/app/Http/Requests/CreateDocumentRequest.php
David Bomba cd10003d64
Permission fixes. (#2407)
* Patch for permissions

* fixes for production

* fix for doc uploads
2018-10-05 00:19:01 +10:00

38 lines
668 B
PHP

<?php
namespace App\Http\Requests;
use App\Models\Expense;
use App\Models\Invoice;
class CreateDocumentRequest extends DocumentRequest
{
protected $autoload = [
ENTITY_INVOICE,
ENTITY_EXPENSE,
];
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
if($this->user()->hasFeature(FEATURE_DOCUMENTS))
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
//'file' => 'mimes:jpg'
];
}
}