mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
refs: https://github.com/TryGhost/Toolbox/issues/137 Extract error handling middleware and replace with a package.
8 lines
265 B
JavaScript
8 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
|
|
});
|