Skip to content

Commit d030182

Browse files
author
Jamie Curnow
committed
Replaced bcrypt-then with updated bcrypt
1 parent 3119c3f commit d030182

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"dependencies": {
3737
"ajv": "^6.5.1",
3838
"batchflow": "^0.4.0",
39-
"bcrypt-then": "^1.1.0",
39+
"bcrypt": "^3.0.0",
4040
"body-parser": "^1.18.3",
4141
"compression": "^1.7.2",
4242
"config": "^1.30.0",

src/backend/models/auth.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
'use strict';
55

6-
const bcrypt = require('bcrypt-then');
6+
const bcrypt = require('bcrypt');
77
const db = require('../db');
88
const Model = require('objection').Model;
99
const User = require('./user');

0 commit comments

Comments
 (0)