mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +03:00
76f06fae3c
This reverts commit fa8c3ebe99
.
Reverting the revert, which will allow us to fully switch to @tryghost/logging v2.
11 lines
295 B
JavaScript
11 lines
295 B
JavaScript
const settingsCache = require('../../../shared/settings-cache');
|
|
const mailService = require('../../services/mail');
|
|
const urlUtils = require('../../../shared/url-utils');
|
|
const Invites = require('./invites');
|
|
|
|
module.exports = new Invites({
|
|
settingsCache,
|
|
mailService,
|
|
urlUtils
|
|
});
|