2017-01-30 20:40:43 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests;
|
2016-11-29 18:47:26 +01:00
|
|
|
|
|
|
|
class CreateProjectRequest extends ProjectRequest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
|
|
|
return $this->user()->can('create', ENTITY_PROJECT);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'name' => sprintf('required|unique:projects,name,,id,account_id,%s', $this->user()->account_id),
|
2016-12-15 13:17:10 +01:00
|
|
|
'client_id' => 'required',
|
2016-11-29 18:47:26 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|