diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-04-27 18:10:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-27 18:10:59 -0400 |
commit | 0956634d61ef2b6202645ec4b502239573c2e743 (patch) | |
tree | e53dcf42db38c57d0e48cb0970574a3945951372 /ext/bg/data | |
parent | 48c7010f4ea8daafd30e5650625c377affa0cecd (diff) |
Add duplicateScope: 'deck' option (#476)
* Add duplicateScope: 'deck' option
* Add option to control duplicate scope
* Use duplicateScope for findNoteIds
* Update location of quotes
Diffstat (limited to 'ext/bg/data')
-rw-r--r-- | ext/bg/data/options-schema.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/bg/data/options-schema.json b/ext/bg/data/options-schema.json index 4f9e694d..8622f16b 100644 --- a/ext/bg/data/options-schema.json +++ b/ext/bg/data/options-schema.json @@ -492,6 +492,7 @@ "screenshot", "terms", "kanji", + "duplicateScope", "fieldTemplates" ], "properties": { @@ -587,6 +588,11 @@ } } }, + "duplicateScope": { + "type": "string", + "default": "collection", + "enum": ["collection", "deck"] + }, "fieldTemplates": { "type": ["string", "null"], "default": null |