0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/core/server/services/invites/index.js

15 lines
403 B
JavaScript
Raw Normal View History

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