Skip to content

Commit 7aec9d4

Browse files
Merge pull request #8669 from woocommerce/bugfix/wpauthenticator-723-config-flag-for-custom-step-value
WPAuthenticator - Config flag to enable custom step value for get started screen.
2 parents 9726ccb + bc7b5c4 commit 7aec9d4

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ target 'WooCommerce' do
8686
pod 'Gridicons', '~> 1.2.0'
8787

8888
# To allow pod to pick up beta versions use -beta. E.g., 1.1.7-beta.1
89-
pod 'WordPressAuthenticator', '~> 5.0.0'
89+
pod 'WordPressAuthenticator', '~> 5.1.0-beta.1'
9090
# pod 'WordPressAuthenticator', :git => 'https://github.com/wordpress-mobile/WordPressAuthenticator-iOS.git', :commit => ''
9191
# pod 'WordPressAuthenticator', :git => 'https://github.com/wordpress-mobile/WordPressAuthenticator-iOS.git', :branch => ''
9292
# pod 'WordPressAuthenticator', :path => '../WordPressAuthenticator-iOS'

Podfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ PODS:
3939
- WordPress-Aztec-iOS (1.11.0)
4040
- WordPress-Editor-iOS (1.11.0):
4141
- WordPress-Aztec-iOS (= 1.11.0)
42-
- WordPressAuthenticator (5.0.0):
42+
- WordPressAuthenticator (5.1.0-beta.1):
4343
- GoogleSignIn (~> 6.0.1)
4444
- Gridicons (~> 1.0)
4545
- "NSURL+IDN (= 0.4)"
@@ -84,7 +84,7 @@ DEPENDENCIES:
8484
- Sourcery (~> 1.0.3)
8585
- StripeTerminal (~> 2.14)
8686
- WordPress-Editor-iOS (~> 1.11.0)
87-
- WordPressAuthenticator (~> 5.0.0)
87+
- WordPressAuthenticator (~> 5.1.0-beta.1)
8888
- WordPressKit (~> 5.0.0)
8989
- WordPressShared (~> 2.0)
9090
- WordPressUI (~> 1.12.5)
@@ -153,7 +153,7 @@ SPEC CHECKSUMS:
153153
UIDeviceIdentifier: f33af270ba9045ea18b31d9aab88e42a0082ea67
154154
WordPress-Aztec-iOS: 050b34d4c3adfb7c60363849049b13d60683b348
155155
WordPress-Editor-iOS: 304098424f1051cb271546c99f906aac296b1b81
156-
WordPressAuthenticator: 0cdf1bff75bd3f58fe733d6457221f27bbbdc9f4
156+
WordPressAuthenticator: b4df3148e7a7c1ad739bcbe6cc7b5ce728a1b15d
157157
WordPressKit: 202f529323b079a344f7bc1493b7ebebfd9ed4b5
158158
WordPressShared: 35d41bdf0927e714af1fc85fa9cb692f934473be
159159
WordPressUI: c5be816f6c7b3392224ac21de9e521e89fa108ac
@@ -169,6 +169,6 @@ SPEC CHECKSUMS:
169169
ZendeskSupportProvidersSDK: 2bdf8544f7cd0fd4c002546f5704b813845beb2a
170170
ZendeskSupportSDK: 3a8e508ab1d9dd22dc038df6c694466414e037ba
171171

172-
PODFILE CHECKSUM: 17ff88b703dd664331487078325e3a051db87976
172+
PODFILE CHECKSUM: d9ae1586866c135c8c538e08c02a66f17b63c344
173173

174174
COCOAPODS: 1.11.3

WooCommerce/Classes/Authentication/AuthenticationManager.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ class AuthenticationManager: Authentication {
9090
emphasizeEmailForWPComPassword: true,
9191
wpcomPasswordInstructions:
9292
AuthenticationConstants.wpcomPasswordInstructions,
93-
skipXMLRPCCheckForSiteDiscovery: true)
93+
skipXMLRPCCheckForSiteDiscovery: true,
94+
useEnterEmailAddressAsStepValueForGetStartedVC: true)
9495

9596
let systemGray3LightModeColor = UIColor(red: 199/255.0, green: 199/255.0, blue: 204/255.0, alpha: 1)
9697
let systemLabelLightModeColor = UIColor(red: 0, green: 0, blue: 0, alpha: 1)

0 commit comments

Comments
 (0)