Disable PIN requirement for new registrations.

This commit is contained in:
Greyson Parrelli
2020-02-19 13:45:49 -05:00
parent 1bae79af5b
commit 5158a15379
4 changed files with 11 additions and 4 deletions

View File

@@ -26,7 +26,7 @@ class PinsForAllSchedule implements MegaphoneSchedule {
static boolean shouldDisplayFullScreen(long firstVisible, long currentTime) {
return false;
// TODO [greyson]
// TODO [greyson] [pins] Maybe re-enable if we ever do a blocking flow again
// if (pinCreationFailedDuringRegistration()) {
// return true;
// }
@@ -74,6 +74,10 @@ class PinsForAllSchedule implements MegaphoneSchedule {
return false;
}
if (SignalStore.kbsValues().hasMigratedToPinsForAll()) {
return false;
}
return FeatureFlags.pinsForAll();
}