mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-15 03:01:37 -05:00
Cleaned up staff service package
refs https://github.com/TryGhost/Team/issues/1826
This commit is contained in:
parent
22b0586667
commit
ad2934ba71
2 changed files with 2 additions and 12 deletions
|
@ -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,
|
||||
|
|
|
@ -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');
|
||||
});
|
||||
});
|
Loading…
Add table
Reference in a new issue