mirror of
https://github.com/bitwarden/mobile
synced 2025-12-21 18:53:29 +00:00
new autofill feature settings
This commit is contained in:
@@ -37,5 +37,29 @@ namespace Bit.App.Services
|
||||
_settings.AddOrUpdateValue(Constants.LastActivityDate, value);
|
||||
}
|
||||
}
|
||||
|
||||
public bool AutofillPersistNotification
|
||||
{
|
||||
get
|
||||
{
|
||||
return _settings.GetValueOrDefault(Constants.AutofillPersistNotification, false);
|
||||
}
|
||||
set
|
||||
{
|
||||
_settings.AddOrUpdateValue(Constants.AutofillPersistNotification, value);
|
||||
}
|
||||
}
|
||||
|
||||
public bool AutofillPasswordField
|
||||
{
|
||||
get
|
||||
{
|
||||
return _settings.GetValueOrDefault(Constants.AutofillPasswordField, false);
|
||||
}
|
||||
set
|
||||
{
|
||||
_settings.AddOrUpdateValue(Constants.AutofillPasswordField, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user