mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update RegisterController, store client ip during registration
This commit is contained in:
parent
33e6cf26d2
commit
d4c967de98
2 changed files with 2 additions and 1 deletions
|
@ -163,6 +163,7 @@ class RegisterController extends Controller
|
|||
'username' => $data['username'],
|
||||
'email' => $data['email'],
|
||||
'password' => Hash::make($data['password']),
|
||||
'app_register_ip' => request()->ip()
|
||||
]);
|
||||
}
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ class User extends Authenticatable
|
|||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'name', 'username', 'email', 'password',
|
||||
'name', 'username', 'email', 'password', 'app_register_ip'
|
||||
];
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue