mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Added temporary fix for email suppression list error logs in tests
refs https://github.com/TryGhost/Team/issues/2598 In tests the model is undefined because the service is imported too early.
This commit is contained in:
parent
7220be92e2
commit
94f5ad60c3
1 changed files with 2 additions and 0 deletions
|
@ -2,6 +2,7 @@ const {AbstractEmailSuppressionList, EmailSuppressionData, EmailSuppressedEvent}
|
|||
const {SpamComplaintEvent, EmailBouncedEvent} = require('@tryghost/email-events');
|
||||
const DomainEvents = require('@tryghost/domain-events');
|
||||
const logging = require('@tryghost/logging');
|
||||
const models = require('../../models');
|
||||
|
||||
/**
|
||||
* @typedef {object} IMailgunAPIClient
|
||||
|
@ -95,6 +96,7 @@ class MailgunEmailSuppressionList extends AbstractEmailSuppressionList {
|
|||
}
|
||||
|
||||
async init() {
|
||||
this.Suppression = models.Suppression;
|
||||
const handleEvent = reason => async (event) => {
|
||||
try {
|
||||
if (reason === 'bounce') {
|
||||
|
|
Loading…
Add table
Reference in a new issue