mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
refs 829e8ed010
- i18n is used everywhere but only requires shared or external packages, therefore it's a good candidate for living in shared
- this reduces invalid requires across frontend and server, and lets us use it everywhere until we come up with a better option
6 lines
293 B
JavaScript
6 lines
293 B
JavaScript
const settingsCache = require('../settings/cache');
|
|
const i18n = require('../../../shared/i18n');
|
|
const ghostVersion = require('../../lib/ghost-version');
|
|
const Notifications = require('./notifications');
|
|
|
|
module.exports.notifications = new Notifications({settingsCache, i18n, ghostVersion});
|