From d023a2737772e01eca8dc2c848ddebe43bb58734 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20S=C3=B3jko?= Date: Mon, 20 Feb 2023 07:14:24 +0100 Subject: [PATCH] fix(event-store): add handling of email sent events --- packages/event-store/src/Bootstrap/Container.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/event-store/src/Bootstrap/Container.ts b/packages/event-store/src/Bootstrap/Container.ts index ed1a14681..65ff97aad 100644 --- a/packages/event-store/src/Bootstrap/Container.ts +++ b/packages/event-store/src/Bootstrap/Container.ts @@ -81,6 +81,7 @@ export class ContainerConfigLoader { ['LISTED_ACCOUNT_CREATED', container.get(TYPES.EventHandler)], ['LISTED_ACCOUNT_DELETED', container.get(TYPES.EventHandler)], ['EMAIL_REQUESTED', container.get(TYPES.EventHandler)], + ['EMAIL_SENT', container.get(TYPES.EventHandler)], ['SHARED_SUBSCRIPTION_INVITATION_CREATED', container.get(TYPES.EventHandler)], ['EMAIL_BACKUP_REQUESTED', container.get(TYPES.EventHandler)], ['PAYMENT_FAILED', container.get(TYPES.EventHandler)],