diff --git a/src/App/Pages/Tools/ToolsPasswordGeneratorPage.cs b/src/App/Pages/Tools/ToolsPasswordGeneratorPage.cs index 92c0354b3..f0aa3ef9e 100644 --- a/src/App/Pages/Tools/ToolsPasswordGeneratorPage.cs +++ b/src/App/Pages/Tools/ToolsPasswordGeneratorPage.cs @@ -131,6 +131,7 @@ namespace Bit.App.Pages protected override void OnAppearing() { base.OnAppearing(); + _googleAnalyticsService.TrackAppEvent("GeneratedPassword"); Model.Password = _passwordGenerationService.GeneratePassword(); Model.Length = _settings.GetValueOrDefault(Constants.PasswordGeneratorLength, 10).ToString(); } diff --git a/src/iOS.Extension/PasswordGeneratorViewController.cs b/src/iOS.Extension/PasswordGeneratorViewController.cs index 1e801a318..29599b76e 100644 --- a/src/iOS.Extension/PasswordGeneratorViewController.cs +++ b/src/iOS.Extension/PasswordGeneratorViewController.cs @@ -140,6 +140,7 @@ namespace Bit.iOS.Extension } GeneratePassword(); + _googleAnalyticsService.TrackExtensionEvent("GeneratedPassword"); base.ViewDidLoad(); }