Skip to content
Snippets Groups Projects
Commit 566cb890 authored by Gregory Szorc's avatar Gregory Szorc
Browse files

httpconnection: allow a global auth.cookiefile config entry

This foreshadows support for defining a cookies file.
parent 12aca677
No related branches found
No related tags found
No related merge requests found
......@@ -69,6 +69,9 @@
# Read configuration
groups = {}
for key, val in ui.configitems('auth'):
if key in ('cookiefile',):
continue
if '.' not in key:
ui.warn(_("ignoring invalid [auth] key '%s'\n") % key)
continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment