浏览代码

增加密码过期机制

sandm 3 年之前
父节点
当前提交
0d0c1ddcef
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      app/Services/Auth/AuthService.php

+ 1 - 0
app/Services/Auth/AuthService.php

@@ -152,6 +152,7 @@ class AuthService
         } elseif ($data['utype'] == 2) {
             $user = $this->memberRepository->resetPassword($data['type'], $data[$data['type']], $password);
         }
+        dd($user);
         $this->memberLogRepository->createLog($user, 2045, []);
         return $data['utype'];
     }