Cleaned up staff service package

refs https://github.com/TryGhost/Team/issues/1826
This commit is contained in:
Rishabh 2022-08-25 20:18:56 +05:30
parent 22b0586667
commit ad2934ba71
2 changed files with 2 additions and 12 deletions

View File

@ -1,13 +1,13 @@
class StaffService {
constructor({logging, models, mailer, settingsCache, urlUtils}) {
/** @private */
this.models = models;
this.logging = logging;
/** @private */
this.settingsCache = settingsCache;
this.models = models;
const Emails = require('./emails');
/** @private */
this.emails = new Emails({
logging,

View File

@ -1,10 +0,0 @@
// Switch these lines once there are useful utils
// const testUtils = require('./utils');
require('./utils');
describe('Hello world', function () {
it('Runs a test', function () {
// TODO: Write me!
'hello'.should.eql('hello');
});
});