mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
84118068c8
refs https://github.com/TryGhost/Ghost/issues/13380 - The i18n package is deprecated. It is being replaced with the tpl package.
11 lines
334 B
JavaScript
11 lines
334 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,
|
|
SettingsModel: models.Settings
|
|
});
|