1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-12 14:12:44 +01:00
invoiceninja/app/Http/Requests/UpdateUserRequest.php

35 lines
686 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Http\Requests;
2016-02-04 21:35:28 +01:00
use Auth;
2016-08-18 09:54:47 +02:00
class UpdateUserRequest extends EntityRequest
2016-02-04 21:35:28 +01:00
{
2016-08-17 16:29:25 +02:00
// Expenses
2017-01-30 20:40:43 +01:00
2016-02-04 21:35:28 +01:00
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
2016-08-17 16:29:25 +02:00
return Auth::user()->is_admin || $this->user()->id == Auth::user()->id;
2016-02-04 21:35:28 +01:00
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'email' => 'email|required|unique:users,email,' . Auth::user()->id . ',id',
'first_name' => 'required',
'last_name' => 'required',
];
}
}