Update PIN feature flags.

This commit is contained in:
Greyson Parrelli
2020-02-05 21:02:18 -05:00
parent 62814490b3
commit 5e59f77f83
2 changed files with 11 additions and 4 deletions

View File

@@ -127,4 +127,8 @@ public final class KbsValues {
public @NonNull PinKeyboardType getKeyboardType() {
return PinKeyboardType.fromCode(store.getString(KEYBOARD_TYPE, null));
}
public boolean hasMigratedToPinsForAll() {
return store.getString(KEYBOARD_TYPE, null) != null;
}
}