Skip to content

Commit

Permalink
New schema to support optional "options"
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Alipaz committed Oct 17, 2017
1 parent 49826b4 commit a4cd9a3
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions inadyn/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@
{
"provider": "str",
"username": "str",
"password": "str",
"password": "str?",
"hostname": "str",
"ssl?": "bool",
"user_agent?": "str",
"checkip_ssl?": "bool",
"checkip_server?": "str",
"checkip_command?": "str",
"checkip_path?": "str",
"custom_provider?": "bool",
"ddns_server?": "str",
"ddns_path?": "str"
"ssl": "bool?",
"user_agent": "str?",
"checkip_ssl": "bool?",
"checkip_server": "str?",
"checkip_command": "str?",
"checkip_path": "str?",
"custom_provider": "bool?",
"ddns_server": "str?",
"ddns_path": "str?"
}
]
}
Expand Down

0 comments on commit a4cd9a3

Please sign in to comment.