1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-06 10:34:07 +00:00

disable website icons option

This commit is contained in:
Kyle Spearrin
2017-10-20 16:10:22 -04:00
parent 37974c7ec8
commit 05f4036309
9 changed files with 103 additions and 13 deletions

View File

@@ -74,6 +74,18 @@ namespace Bit.App.Services
}
}
public bool DisableWebsiteIcons
{
get
{
return _settings.GetValueOrDefault(Constants.SettingDisableWebsiteIcons, false);
}
set
{
_settings.AddOrUpdateValue(Constants.SettingDisableWebsiteIcons, value);
}
}
public string SecurityStamp
{
get