1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-07 11:03:54 +00:00

basic autofill

This commit is contained in:
kspearrin
2018-09-20 16:44:06 -04:00
parent 0baa07daa2
commit 6904ea118b
13 changed files with 1035 additions and 54 deletions

View File

@@ -33,6 +33,11 @@ namespace Bit.iOS.Core.Services
TrackEvent("Extension", eventName, label);
}
public void TrackAutofillExtensionEvent(string eventName, string label = null)
{
TrackEvent("AutofillExtension", eventName, label);
}
public void TrackEvent(string category, string eventName, string label = null)
{
var dict = DictionaryBuilder.CreateEvent(category, eventName, label, null).Build();