mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +03:00
6d2dfff5b5
refs #12537
15 lines
401 B
JavaScript
15 lines
401 B
JavaScript
const settingsCache = require('../settings/cache');
|
|
const {i18n} = require('../../lib/common');
|
|
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
|
|
});
|