You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to migrate from Unleash to Harness and find the equivalent for evaluateAllToggles
We use that to get a list of all flags and when those flags would evaluate to if they were being checked. Then use that map in frontend code to do some simple feature flags.
I would like to submit an equivalent feature for the Harnes SDK. Is there interest in this change?
Option 1
Enhance CfClient to expose it
Option 2
Make Evaluator injectable (and extensible) so I can add it in my small (and admittedly unusual) usecases without making it a common usecase.
Option 3
Mimic the Unleash approach and create a more() option when these extra options are hidden away.
I'm going to begin looking at Option 2 to keep the changes simple.