mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
103a95955a
* Privacy Policy & TOS * configure additional dependency packages for redis and modules, middleware implementation for multi-db * Stub the signup
49 lines
1.1 KiB
PHP
49 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use App\Http\ValidationRules\UniqueUserRule;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Hash;
|
|
|
|
class SignupRequest extends Request
|
|
{
|
|
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return ! auth()->user();
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
//'email' => 'required|string|email|max:100',
|
|
'first_name' => 'required|string|max:100',
|
|
'last_name' => 'required|string:max:100',
|
|
'password' => 'required|string|min:6',
|
|
'email' => new UniqueUserRule(),
|
|
'privacy_policy' => 'required',
|
|
'terms_of_service' => 'required'
|
|
];
|
|
}
|
|
|
|
public function sanitize()
|
|
{
|
|
$input = $this->all();
|
|
|
|
// $this->replace($input);
|
|
|
|
return $this->all();
|
|
}
|
|
|
|
} |