From 4550f68107cd093f0dff4f24278480fa870ebdf6 Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Wed, 7 Jul 2021 21:41:34 +0100 Subject: [PATCH] Moved labs utlity to shared - This isn't really a "service" - it's a set of utilities for working with labs flags - It's also required all over the place, and doesn't require anything that isn't shared - Therefore, it should live in shared --- ghost/members-importer/lib/importer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/members-importer/lib/importer.js b/ghost/members-importer/lib/importer.js index 84d9ae3f32..d460f95ed9 100644 --- a/ghost/members-importer/lib/importer.js +++ b/ghost/members-importer/lib/importer.js @@ -7,7 +7,7 @@ const urlUtils = require('../../../../shared/url-utils'); const db = require('../../../data/db'); const emailTemplate = require('./email-template'); const jobsService = require('../../jobs'); -const labsService = require('../../labs'); +const labsService = require('../../../../shared/labs'); const ghostMailer = new GhostMailer(); module.exports = class MembersCSVImporter {