0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-25 02:31:59 -05:00

🐛 Fixed typo in getEventTimeline

refs 13a9962ade

- The typo was half-fixed in the commit 13a9962ade
- This fixes the call, restoring the feature
This commit is contained in:
Thibaut Patel 2022-02-02 13:08:11 +01:00
parent cc5d33dfcd
commit 90faa71cfe

View file

@ -358,7 +358,7 @@ module.exports = class EventRepository {
{type: 'signup_event', action: 'getSignupEvents'}
];
if (this._labsService.isSet('membersActivityFeed') && this._EmailRecipient) {
pageActions.push({type: 'email_delivered_event', action: 'getEmailDelieveredEvents'});
pageActions.push({type: 'email_delivered_event', action: 'getEmailDeliveredEvents'});
pageActions.push({type: 'email_opened_event', action: 'getEmailOpenedEvents'});
pageActions.push({type: 'email_failed_event', action: 'getEmailFailedEvents'});
}