Replaced bcrypt-then with updated bcrypt

This commit is contained in:
Jamie Curnow
2018-07-31 11:20:03 +10:00
parent 3119c3f576
commit d030182c0a
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
'use strict';
const bcrypt = require('bcrypt-then');
const bcrypt = require('bcrypt');
const db = require('../db');
const Model = require('objection').Model;
const User = require('./user');