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

41 lines
822 B
PHP
Raw Normal View History

2019-04-27 11:20:03 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
2019-04-27 11:20:03 +02:00
namespace App\Http\Requests\User;
use App\Http\Requests\Request;
class UpdateUserRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize() : bool
{
return auth()->user()->can('edit', $this->user);
}
2019-04-28 12:25:18 +02:00
public function rules()
{
return [
'first_name' => 'required|string|max:100',
'last_name' => 'required|string:max:100',
'email' => new UniqueUserRule(),
];
}
2019-04-27 11:20:03 +02:00
}