Add excluded E164s configuration to pre-registration experiment

This commit is contained in:
Chris Eager
2021-07-29 11:29:41 -05:00
committed by Chris Eager
parent df9c0051c9
commit 51b7a8d868
4 changed files with 50 additions and 22 deletions

View File

@@ -47,6 +47,10 @@ public class ExperimentEnrollmentManager {
return true;
}
if (config.getExcludedE164s().contains(e164)) {
return false;
}
{
final String countryCode = Util.getCountryCode(e164);