Ghost/core/server/services/notifications/index.js
2021-12-08 14:28:41 +00:00

11 lines
353 B
JavaScript

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