From b9fdcb53a2fd92a787e6b9779b1ed2923f21c2eb Mon Sep 17 00:00:00 2001 From: Silvan Date: Wed, 28 Oct 2020 11:19:10 +0100 Subject: [PATCH] fix: auth app handler with projectEvents (#917) --- internal/auth/repository/eventsourcing/handler/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/auth/repository/eventsourcing/handler/handler.go b/internal/auth/repository/eventsourcing/handler/handler.go index b3b67d35c1..d641ec39db 100644 --- a/internal/auth/repository/eventsourcing/handler/handler.go +++ b/internal/auth/repository/eventsourcing/handler/handler.go @@ -43,7 +43,7 @@ func Register(configs Configs, bulkLimit, errorCount uint64, view *view.View, ev &UserMembership{handler: handler{view, bulkLimit, configs.cycleDuration("UserMembership"), errorCount}, orgEvents: repos.OrgEvents, projectEvents: repos.ProjectEvents}, &Token{handler: handler{view, bulkLimit, configs.cycleDuration("Token"), errorCount}, ProjectEvents: repos.ProjectEvents}, &Key{handler: handler{view, bulkLimit, configs.cycleDuration("Key"), errorCount}}, - &Application{handler: handler{view, bulkLimit, configs.cycleDuration("Application"), errorCount}}, + &Application{handler: handler{view, bulkLimit, configs.cycleDuration("Application"), errorCount}, projectEvents: repos.ProjectEvents}, &Org{handler: handler{view, bulkLimit, configs.cycleDuration("Org"), errorCount}}, &UserGrant{ handler: handler{view, bulkLimit, configs.cycleDuration("UserGrant"), errorCount},