feature: use md5

This commit is contained in:
antv
2026-07-06 14:00:07 +07:00
parent d8f0e48bf3
commit b1beed4ae6
4 changed files with 71 additions and 76 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ class AdminService implements AdminServiceInterface
'msnv' => $data['msnv'],
'name' => $data['name'],
'mail' => $data['mail'],
'pass' => Hash::make($data['password']),
'pass' => md5($data['password']),
'departments' => $data['departments'],
'role' => $data['role'],
'status' => User::STATUS_ACTIVE,