feat: 修改邀请代码生成逻辑,调整随机字符串长度

This commit is contained in:
lingling 2025-03-05 20:59:38 +08:00
parent 0d758464e3
commit 19327aacf3
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ class UserController
$user->join_ip = $request->getRealIp($safe_mode = true); $user->join_ip = $request->getRealIp($safe_mode = true);
$user->f_id = $f_id; $user->f_id = $f_id;
$user->ff_id = $ff_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->password = password_hash($password, PASSWORD_DEFAULT);
$user->save(); $user->save();
$user_new = User::where('username', $username)->first(); $user_new = User::where('username', $username)->first();