Ghost/core/server/services/notifications/index.js
Sam Lord 443ee369d2
Remove unnecessary references to ghostVersion
refs: https://github.com/TryGhost/Toolbox/issues/146
GhostVersion was passed in here but not used at all. This just removes those unnecessary usages.
2021-12-07 13:48:22 +00:00

9 lines
265 B
JavaScript

const settingsCache = require('../../../shared/settings-cache');
const Notifications = require('./notifications');
const models = require('../../models');
module.exports.notifications = new Notifications({
settingsCache,
SettingsModel: models.Settings
});