Introduce a new feature flag for contact creation (#5570)

Introduce new feature flag
`IS_CONTACT_CREATION_FOR_SENT_AND_RECEIVED_EMAILS_ENABLED` to allow
contacts to be created for sent and received emails.
This commit is contained in:
bosiraphael
2024-05-24 18:55:21 +02:00
committed by GitHub
parent a0178478d4
commit 936ac4027a
8 changed files with 116 additions and 11 deletions

View File

@ -50,6 +50,11 @@ export const seedFeatureFlags = async (
workspaceId: workspaceId,
value: true,
},
{
key: FeatureFlagKeys.IsContactCreationForSentAndReceivedEmailsEnabled,
workspaceId: workspaceId,
value: true,
},
])
.execute();
};