mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
273e220327
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
15 lines
403 B
JavaScript
15 lines
403 B
JavaScript
const settingsCache = require('../settings/cache');
|
|
const i18n = require('../../../shared/i18n');
|
|
const mailService = require('../../services/mail');
|
|
const logging = require('../../../shared/logging');
|
|
const urlUtils = require('../../../shared/url-utils');
|
|
const Invites = require('./invites');
|
|
|
|
module.exports = new Invites({
|
|
settingsCache,
|
|
i18n,
|
|
logging,
|
|
mailService,
|
|
urlUtils
|
|
});
|