mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
97c68dd388
refs: https://github.com/TryGhost/Toolbox/issues/137 Extract error handling middleware and replace with a package.
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
|
|
});
|