加入前台用户 同一时间同一账号只能在一个地方登录

前台用户没有此功能

Signed-off-by: 小和 <496631085@qq.com>
pull/433/head
小和 2023-03-08 07:34:25 +00:00 committed by Gitee
parent eee98aad11
commit 6554501c57
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 4 additions and 0 deletions

View File

@ -296,6 +296,10 @@ class Auth
{
$user = User::get($user_id);
if ($user) {
//判断是否同一时间同一账号只能在一个地方登录
if (Config::get('fastadmin.login_unique')) {
Token::clear($user_id);
}
Db::startTrans();
try {
$ip = request()->ip();