aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h
diff options
context:
space:
mode:
authorGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-07-08 20:36:55 -0700
committerGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-07-08 20:37:41 -0700
commit89801946f05774d3037b15f11b6a5d249c776804 (patch)
tree7d3b7512a11ae45bb9573811e784f44a4ead84cd /example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h
parent9c721bbf410e2064a6fb69f8b1249fd785d1c275 (diff)
Added OAuth 2.0 support to examples
Diffstat (limited to 'example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h')
-rw-r--r--example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h b/example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h
index e5f5da48..a1cb84a2 100644
--- a/example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h
+++ b/example/ios/iOS UI Test/iOS UI Test/SettingsViewController.h
@@ -12,6 +12,7 @@ extern NSString * const UsernameKey;
extern NSString * const PasswordKey;
extern NSString * const HostnameKey;
extern NSString * const FetchFullMessageKey;
+extern NSString * const OAuthEnabledKey;
@protocol SettingsViewControllerDelegate;
@@ -21,6 +22,8 @@ extern NSString * const FetchFullMessageKey;
@property (weak, nonatomic) IBOutlet UITextField *passwordTextField;
@property (weak, nonatomic) IBOutlet UITextField *hostnameTextField;
@property (weak, nonatomic) IBOutlet UISwitch *fetchFullMessageSwitch;
+@property (weak, nonatomic) IBOutlet UISwitch *useOAuth2Switch;
+
@property (nonatomic, weak) id<SettingsViewControllerDelegate> delegate;
- (IBAction)done:(id)sender;