mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 06:35:49 +03:00
Fixed missing Bluebird require in security/password.js
(#9624)
no issue
This commit is contained in:
parent
c19a0c9942
commit
e9d1d34739
@ -1,3 +1,5 @@
|
||||
const Promise = require('bluebird');
|
||||
|
||||
module.exports.hash = function hash(plainPassword) {
|
||||
const bcrypt = require('bcryptjs'),
|
||||
bcryptGenSalt = Promise.promisify(bcrypt.genSalt),
|
||||
|
Loading…
Reference in New Issue
Block a user