1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/Requests/Account/CreateAccountRequest.php

57 lines
1.4 KiB
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
2018-10-24 05:50:15 +02:00
namespace App\Http\Requests\Account;
2018-10-24 05:50:15 +02:00
use App\Http\Requests\Request;
2019-06-05 06:06:27 +02:00
use App\Http\ValidationRules\NewUniqueUserRule;
2018-10-24 05:50:15 +02:00
class CreateAccountRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
//'email' => 'required|string|email|max:100',
'first_name' => 'string|max:100',
'last_name' => 'string:max:100',
'password' => 'required|string|min:6',
2020-10-12 23:27:42 +02:00
'email' => 'bail|required|email:rfc,dns',
2019-06-05 06:06:27 +02:00
'email' => new NewUniqueUserRule(),
2021-05-22 23:50:34 +02:00
'privacy_policy' => 'required|boolean',
'terms_of_service' => 'required|boolean',
];
}
protected function prepareForValidation()
2021-05-22 23:50:34 +02:00
{nlog($this->all());
$input = $this->all();
$input['user_agent'] = request()->server('HTTP_USER_AGENT');
$this->replace($input);
}
}