mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
443ee369d2
refs: https://github.com/TryGhost/Toolbox/issues/146 GhostVersion was passed in here but not used at all. This just removes those unnecessary usages.
9 lines
265 B
JavaScript
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
|
|
});
|