diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-12-06 21:17:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-06 21:17:05 -0500 |
commit | 35fbc76df441756e5044bcc9784ab3219a8d6701 (patch) | |
tree | a9f102238ae21836c89ca41e5f93a87a34797e1a /ext/bg/data/options-schema.json | |
parent | 88b8191ac2946c02ef8f9a73cd2c4050b1f02f61 (diff) |
Settings v2 testing setup (#1084)
* Add option for using settings v2
* Add options/info about settings v2
* Use settings v2 URL when applicable
* Update tests
Diffstat (limited to 'ext/bg/data/options-schema.json')
-rw-r--r-- | ext/bg/data/options-schema.json | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ext/bg/data/options-schema.json b/ext/bg/data/options-schema.json index 2da48041..4a953243 100644 --- a/ext/bg/data/options-schema.json +++ b/ext/bg/data/options-schema.json @@ -797,7 +797,8 @@ "type": "object", "required": [ "database", - "showPopupPreview" + "showPopupPreview", + "useSettingsV2" ], "properties": { "database": { @@ -815,6 +816,10 @@ "showPopupPreview": { "type": "boolean", "default": false + }, + "useSettingsV2": { + "type": "boolean", + "default": false } } } |