aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Auth/Sample/SettingsViewController.m
diff options
context:
space:
mode:
Diffstat (limited to 'Example/Auth/Sample/SettingsViewController.m')
-rw-r--r--Example/Auth/Sample/SettingsViewController.m17
1 files changed, 17 insertions, 0 deletions
diff --git a/Example/Auth/Sample/SettingsViewController.m b/Example/Auth/Sample/SettingsViewController.m
index 24a6513..4815f32 100644
--- a/Example/Auth/Sample/SettingsViewController.m
+++ b/Example/Auth/Sample/SettingsViewController.m
@@ -214,9 +214,26 @@ static NSString *truncatedString(NSString *string, NSUInteger length) {
[weakSelf loadTableView];
}],
]],
+ [StaticContentTableViewSection sectionWithTitle:@"Auth Settings" cells:@[
+ [StaticContentTableViewCell cellWithTitle:@"Disable App Verification (Phone)"
+ value:[AppManager auth].settings.
+ appVerificationDisabledForTesting ? @"Yes" : @"No"
+ action:^{
+ [weakSelf toggleDisableAppVerification];
+ [weakSelf loadTableView];
+ }],
+ ]],
]];
}
+/** @fn toggleDisableAppVerification
+ @brief Toggles the appVerificationDisabledForTesting flag on the current Auth instance.
+ */
+- (void)toggleDisableAppVerification {
+ [AppManager auth].settings.appVerificationDisabledForTesting =
+ ![AppManager auth].settings.appVerificationDisabledForTesting;
+}
+
/** @fn toggleAPIHostWithRequestClassName:
@brief Toggles the host name of the server that handles RPCs.
@param requestClassName The name of the RPC request class.