0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

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
This commit is contained in:
Hannah Wolfe 2021-07-07 21:41:34 +01:00 committed by naz
parent ee0cf47ce0
commit 4550f68107

View file

@ -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 {