mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +03:00
0bdaa216e5
- Ghost has a set of core packages that it is safe to require directly in any file - tpl is one of them! - This keeps the DI signature smaller and easier to reason about
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
|
|
});
|