feat: 修改邀请代码生成逻辑,调整随机字符串长度
This commit is contained in:
parent
0d758464e3
commit
19327aacf3
|
@ -123,7 +123,7 @@ class UserController
|
|||
$user->join_ip = $request->getRealIp($safe_mode = true);
|
||||
$user->f_id = $f_id;
|
||||
$user->ff_id = $ff_id;
|
||||
$user->invite_code = Random::str_random(5);
|
||||
$user->invite_code = Random::str_random(5,7);
|
||||
$user->password = password_hash($password, PASSWORD_DEFAULT);
|
||||
$user->save();
|
||||
$user_new = User::where('username', $username)->first();
|
||||
|
|
Loading…
Reference in New Issue