Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Experiments/Experiments/DefaultFeatureFlagService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public struct DefaultFeatureFlagService: FeatureFlagService {
case .storeCreationM2WithInAppPurchasesEnabled:
return false
case .storeCreationM3Profiler:
return buildConfig == .localDeveloper || buildConfig == .alpha
return true
case .justInTimeMessagesOnDashboard:
return true
case .systemStatusReportInSupportRequest:
Expand Down
2 changes: 1 addition & 1 deletion RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

12.0
-----

- [internal] Store creation flow now includes 3 profiler questions: store category, selling status, and store country. [https://github.com/woocommerce/woocommerce-ios/pull/8667]

11.9
-----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ extension WooAnalyticsEvent.StoreCreation {
/// Steps of the native store creation flow.
enum Step: String {
case storeName = "store_name"
case profilerCategoryQuestion = "store_profiler_industries"
case profilerSellingStatusQuestion = "store_profiler_commerce_journey"
case profilerCountryQuestion = "store_profiler_country"
case domainPicker = "domain_picker"
case storeSummary = "store_summary"
case planPurchase = "plan_purchase"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ private extension StoreCreationCoordinator {
self.showSellingStatusQuestion(from: navigationController, storeName: storeName, category: nil, planToPurchase: planToPurchase)
})
navigationController.pushViewController(questionController, animated: true)
// TODO: analytics
analytics.track(event: .StoreCreation.siteCreationStep(step: .profilerCategoryQuestion))
}

@MainActor
Expand All @@ -348,7 +348,7 @@ private extension StoreCreationCoordinator {
planToPurchase: planToPurchase)
}
navigationController.pushViewController(questionController, animated: true)
// TODO: analytics
analytics.track(event: .StoreCreation.siteCreationStep(step: .profilerSellingStatusQuestion))
}

@MainActor
Expand All @@ -370,7 +370,7 @@ private extension StoreCreationCoordinator {
self?.showSupport(from: navigationController)
})
navigationController.pushViewController(questionController, animated: true)
// TODO: analytics
analytics.track(event: .StoreCreation.siteCreationStep(step: .profilerCountryQuestion))
}

@MainActor
Expand Down