1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-13 23:03:23 +00:00

log autofill events

This commit is contained in:
Kyle Spearrin
2019-07-22 15:50:59 -04:00
parent 0c75374c0f
commit f9547f158e
10 changed files with 33 additions and 20 deletions

View File

@@ -42,7 +42,7 @@ namespace Bit.iOS.Core.Controllers
public abstract UINavigationItem BaseNavItem { get; }
public abstract UIBarButtonItem BaseCancelButton { get; }
public abstract UIBarButtonItem BaseSaveButton { get; }
public abstract Action Success { get; }
public abstract Action<string> Success { get; }
public override void ViewDidLoad()
{
@@ -187,7 +187,7 @@ namespace Bit.iOS.Core.Controllers
{
await ASHelpers.ReplaceAllIdentities();
}
Success();
Success(cipherDomain.Id);
}
catch(ApiException e)
{