1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-14 00:19:16 +01:00

fix: correct data format for FEATURE_CREATED event

This commit is contained in:
Ivar Conradi Østhus 2021-08-27 19:30:51 +02:00
parent 18acd4b1cc
commit 9b521de34e
No known key found for this signature in database
GPG Key ID: 31AC596886B0BD09

View File

@ -244,7 +244,7 @@ class FeatureToggleServiceV2 {
projectId,
);
const data = { featureData, projectId };
const data = { ...featureData, projectId };
await this.eventStore.store({
type: FEATURE_CREATED,