mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-04 17:04:59 +03:00
fa8c3ebe99
This reverts commit 97451a93cb
.
13 lines
354 B
JavaScript
13 lines
354 B
JavaScript
const settingsCache = require('../../../shared/settings-cache');
|
|
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,
|
|
logging,
|
|
mailService,
|
|
urlUtils
|
|
});
|