mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-08-30 14:34:48 +00:00
Change API inputs/outputs and structs to camelCase
This commit is contained in:
parent
55fdee3bf8
commit
ccdcbc89ce
35 changed files with 1891 additions and 1950 deletions
|
@ -71,9 +71,9 @@ with urllib.request.urlopen(DOMAIN_LISTS_URL) as response:
|
|||
global_domains = []
|
||||
for name, domain_list in domain_lists.items():
|
||||
entry = OrderedDict()
|
||||
entry["Type"] = enums[name]
|
||||
entry["Domains"] = domain_list
|
||||
entry["Excluded"] = False
|
||||
entry["type"] = enums[name]
|
||||
entry["domains"] = domain_list
|
||||
entry["excluded"] = False
|
||||
global_domains.append(entry)
|
||||
|
||||
# Write out the global domains JSON file.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue