mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
2d090b8b2a
This reverts commit 443ee369d2
.
11 lines
353 B
JavaScript
11 lines
353 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: ghostVersion.full,
|
|
SettingsModel: models.Settings
|
|
});
|