summaryrefslogtreecommitdiff
path: root/ext/bg/data
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-12-06 21:17:05 -0500
committerGitHub <noreply@github.com>2020-12-06 21:17:05 -0500
commit35fbc76df441756e5044bcc9784ab3219a8d6701 (patch)
treea9f102238ae21836c89ca41e5f93a87a34797e1a /ext/bg/data
parent88b8191ac2946c02ef8f9a73cd2c4050b1f02f61 (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')
-rw-r--r--ext/bg/data/options-schema.json7
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
}
}
}