0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00
ghost/core/server/services/invites/index.js
2021-01-14 19:42:38 +13:00

14 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
});