mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 18:31:57 +03:00
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
|
||
|
});
|