Skip to content
This repository was archived by the owner on Feb 5, 2025. It is now read-only.
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 WordPressAuthenticator.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Pod::Spec.new do |s|
s.name = 'WordPressAuthenticator'
s.version = '2.4.0-beta.1'
s.version = '2.4.0-beta.2'

s.summary = 'WordPressAuthenticator implements an easy and elegant way to authenticate your WordPress Apps.'
s.description = <<-DESC
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@ public class AuthenticatorAnalyticsTracker {
/// This represents the user opening their mail. It’s not strictly speaking an in-app screen but for the user it is part of the flow.
case emailOpened = "email_opened"

/// Represents the screen or step in which WPCOM account email is entered by the user
///
case enterEmailAddress = "enter_email_address"

/// The screen with a username and password visible
///
case usernamePassword = "username_password"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -452,9 +452,9 @@ private extension GetStartedViewController {
}

if isMovingToParent {
tracker.track(step: .start)
tracker.track(step: .enterEmailAddress)
} else {
tracker.set(step: .start)
tracker.set(step: .enterEmailAddress)
}
}
}
Expand Down