From f7c767d4735c308bf0573e91e4acd6a80f150f38 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Tue, 11 Jul 2023 17:37:52 +0200 Subject: [PATCH] Removed unused Bluebird import refs https://github.com/TryGhost/Ghost/issues/14882 - this is no longer used so we can remove it as we move towards removing Bluebird from the codebase --- ghost/core/core/server/models/user.js | 1 - 1 file changed, 1 deletion(-) diff --git a/ghost/core/core/server/models/user.js b/ghost/core/core/server/models/user.js index 296a3be794..89b2afcbce 100644 --- a/ghost/core/core/server/models/user.js +++ b/ghost/core/core/server/models/user.js @@ -1,5 +1,4 @@ const _ = require('lodash'); -const Promise = require('bluebird'); const validator = require('@tryghost/validator'); const ObjectId = require('bson-objectid').default; const ghostBookshelf = require('./base');