mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
Password hashing. (#441)
Fixes https://github.com/phanan/koel/issues/432
This commit is contained in:
parent
5d9a2ffe73
commit
7434f4bbbb
1 changed files with 2 additions and 0 deletions
|
@ -31,6 +31,8 @@ class UserTableSeeder extends Seeder
|
|||
abort(422);
|
||||
}
|
||||
|
||||
$details['password'] = Hash::make($details['password']);
|
||||
|
||||
return $details;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue