Skip to content

Commit 5158dfe

Browse files
authored
Merge 19.7.1 hotfix into release/19.8 (#13521)
2 parents 6c88236 + 57b1813 commit 5158dfe

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

RELEASE-NOTES.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,17 @@
55
19.9
66
-----
77

8-
98
19.8
109
-----
1110
- [*] Add support to background update the order list and the dashboard analytics cards(Performance & Top Performers).
1211
- [*] Dynamic Dashboard: Display unavailable analytics view when logged in without WPCom. [https://github.com/woocommerce/woocommerce-ios/pull/13440]
1312
- [*] Fix large text support in Bar Code Scanner. [https://github.com/woocommerce/woocommerce-ios/pull/13464]
1413
- [internal] Enable Blaze only if the store has Jetpack installed and connected. [https://github.com/woocommerce/woocommerce-ios/pull/13448]
1514

15+
19.7.1
16+
-----
17+
- [***] Prologue: Restored web view for `Starting a new store?` button [https://github.com/woocommerce/woocommerce-ios/pull/13518]
18+
1619
19.7
1720
-----
1821
- [*] Order status is consistent across the order list/dashboard card/filter list/search list. [https://github.com/woocommerce/woocommerce-ios/pull/13408]

WooCommerce/Classes/Authentication/AuthenticationManager.swift

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -552,6 +552,16 @@ extension AuthenticationManager: WordPressAuthenticatorDelegate {
552552
}
553553
analytics.track(wooEvent, withError: error)
554554
}
555+
556+
func showSiteCreationGuide(in navigationController: UINavigationController) {
557+
analytics.track(event: .StoreCreation.loginPrologueStartingANewStoreTapped())
558+
559+
guard let url = try? AuthenticationConstants.hostingURL.asURL() else {
560+
return
561+
}
562+
let webView = SFSafariViewController(url: url)
563+
navigationController.present(webView, animated: true)
564+
}
555565
}
556566

557567
// MARK: - Private helpers

0 commit comments

Comments
 (0)