mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
Fixed missing Bluebird require in security/password.js
(#9624)
no issue
This commit is contained in:
parent
c19a0c9942
commit
e9d1d34739
1 changed files with 2 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
|||
const Promise = require('bluebird');
|
||||
|
||||
module.exports.hash = function hash(plainPassword) {
|
||||
const bcrypt = require('bcryptjs'),
|
||||
bcryptGenSalt = Promise.promisify(bcrypt.genSalt),
|
||||
|
|
Loading…
Add table
Reference in a new issue