Revert "Enable magic OTP on production for App Store review"
This reverts commit 4109e3dac4.
This commit is contained in:
parent
b39f8bf1e8
commit
d7c9ae23ef
1 changed files with 4 additions and 4 deletions
|
|
@ -43,11 +43,11 @@ application.emailCatchAll = isDevEnvironment ? "dev-emails@payfrit.com" : "";
|
||||||
application.emailEnabled = !isDevEnvironment ? true : false; // Disable emails on dev entirely
|
application.emailEnabled = !isDevEnvironment ? true : false; // Disable emails on dev entirely
|
||||||
|
|
||||||
// ============================================
|
// ============================================
|
||||||
// MAGIC OTP (for testing / App Store review)
|
// MAGIC OTP (for testing)
|
||||||
// ============================================
|
// ============================================
|
||||||
// Enabled on both dev and production for App Store review
|
// Dev: Allow magic phone number to bypass OTP
|
||||||
// Code 123456 will work for any phone number
|
// Prod: Disabled
|
||||||
application.MAGIC_OTP_ENABLED = true;
|
application.MAGIC_OTP_ENABLED = isDevEnvironment;
|
||||||
application.MAGIC_OTP_CODE = "123456";
|
application.MAGIC_OTP_CODE = "123456";
|
||||||
application.MAGIC_PHONE_NUMBERS = ["5555555555", "0000000000"];
|
application.MAGIC_PHONE_NUMBERS = ["5555555555", "0000000000"];
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue