From d952f10c4f8160789094b0f61dffd65abcf8c990 Mon Sep 17 00:00:00 2001 From: Jason Lin Date: Thu, 16 Jan 2025 14:26:06 -0500 Subject: [PATCH 1/2] Add flag to flags.ts --- packages/common-code/src/featureFlags/flags.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages/common-code/src/featureFlags/flags.ts b/packages/common-code/src/featureFlags/flags.ts index db9fc318d1..b39f05f5b3 100644 --- a/packages/common-code/src/featureFlags/flags.ts +++ b/packages/common-code/src/featureFlags/flags.ts @@ -39,6 +39,15 @@ const featureFlags = { flag: 'withdraw-rate', defaultValue: false, }, + /** + * Flag for removing parameter store form the application. + * False will continue to pull email configuration data from parameter store. + * True will pull email configuration data from the database. + */ + REMOVE_PARAMETER_STORE: { + flag: 'remove-parameter-store', + defaultValue: false, + }, // PERMANENT FLAGS /** Enables the modal that alerts the user to an expiring session From ce182df53ee6750efed4aba31a937af73edc8751 Mon Sep 17 00:00:00 2001 From: Jason Lin Date: Thu, 16 Jan 2025 14:47:33 -0500 Subject: [PATCH 2/2] comment --- packages/common-code/src/featureFlags/flags.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/common-code/src/featureFlags/flags.ts b/packages/common-code/src/featureFlags/flags.ts index b39f05f5b3..3fed35f73a 100644 --- a/packages/common-code/src/featureFlags/flags.ts +++ b/packages/common-code/src/featureFlags/flags.ts @@ -40,9 +40,7 @@ const featureFlags = { defaultValue: false, }, /** - * Flag for removing parameter store form the application. - * False will continue to pull email configuration data from parameter store. - * True will pull email configuration data from the database. + * Remove parameter store. False: use parameter store for email config. True: use database. */ REMOVE_PARAMETER_STORE: { flag: 'remove-parameter-store',