Handle retrieving credentials from HTTP Basic Auth
This commit is contained in:
committed by
Jonathan White
parent
cb3c4893dc
commit
a070f1bce7
@@ -121,6 +121,16 @@ void BrowserSettings::setAlwaysAllowUpdate(bool alwaysAllowUpdate)
|
||||
config()->set("Browser/AlwaysAllowUpdate", alwaysAllowUpdate);
|
||||
}
|
||||
|
||||
bool BrowserSettings::httpAuthPermission()
|
||||
{
|
||||
return config()->get("Browser/HttpAuthPermission", false).toBool();
|
||||
}
|
||||
|
||||
void BrowserSettings::setHttpAuthPermission(bool httpAuthPermission)
|
||||
{
|
||||
config()->set("Browser/HttpAuthPermission", httpAuthPermission);
|
||||
}
|
||||
|
||||
bool BrowserSettings::searchInAllDatabases()
|
||||
{
|
||||
return config()->get("Browser/SearchInAllDatabases", false).toBool();
|
||||
|
||||
Reference in New Issue
Block a user