mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
refs: #13380 - The i18n package is deprecated. It is being replaced with the tpl package. Co-authored-by: Aleksander Chromik <aleksander.chromik@footballco.com>
14 lines
401 B
JavaScript
14 lines
401 B
JavaScript
const settingsCache = require('../../../shared/settings-cache');
|
|
const tpl = require('@tryghost/tpl');
|
|
const mailService = require('../../services/mail');
|
|
const logging = require('@tryghost/logging');
|
|
const urlUtils = require('../../../shared/url-utils');
|
|
const Invites = require('./invites');
|
|
|
|
module.exports = new Invites({
|
|
settingsCache,
|
|
tpl,
|
|
logging,
|
|
mailService,
|
|
urlUtils
|
|
});
|