From 0180779d6d07da0380821585675a3f346cfb95ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Deifu=C3=9F?= <52584036+fabius@users.noreply.github.com> Date: Tue, 10 Oct 2023 14:45:45 +0200 Subject: [PATCH] fix(backend): include removed SMTP config in Query (#6624) (#6673) closes #6624 Co-authored-by: Elio Bischof --- internal/command/instance_smtp_config_model.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/command/instance_smtp_config_model.go b/internal/command/instance_smtp_config_model.go index e852db3597..ee2c20700a 100644 --- a/internal/command/instance_smtp_config_model.go +++ b/internal/command/instance_smtp_config_model.go @@ -119,6 +119,7 @@ func (wm *InstanceSMTPConfigWriteModel) Query() *eventstore.SearchQueryBuilder { AggregateIDs(wm.AggregateID). EventTypes( instance.SMTPConfigAddedEventType, + instance.SMTPConfigRemovedEventType, instance.SMTPConfigChangedEventType, instance.SMTPConfigPasswordChangedEventType, instance.InstanceDomainAddedEventType,