-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move personalization flag to DecisioningEngine component #1075
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please be sure to set the personalizationStorageEnabled
flag to true in the InAppMessages.js sandbox demo page -- otherwise it'll be broken
@@ -117,4 +118,7 @@ const createDecisioningEngine = ({ | |||
}; | |||
|
|||
createDecisioningEngine.namespace = "DecisioningEngine"; | |||
createDecisioningEngine.configValidators = objectOf({ | |||
personalizationStorageEnabled: boolean().default(true) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's default to false as agreed.
@@ -60,7 +60,8 @@ test("C2589: getLibraryInfo command returns library information.", async () => { | |||
onBeforeEventSend: "function func() {}", | |||
orgId: "5BFE274A5F6980A50A495C08@AdobeOrg", | |||
thirdPartyCookiesEnabled: true, | |||
targetMigrationEnabled: false | |||
targetMigrationEnabled: false, | |||
personalizationStorageEnabled: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here.
Description
Related Issue
Motivation and Context
Screenshots (if appropriate):
Types of changes
Checklist: