Skip to content

Commit

Permalink
bool filters now have lists for must and must_not.
Browse files Browse the repository at this point in the history
  • Loading branch information
bleskes committed Oct 8, 2013
1 parent 96d2951 commit 7bdead2
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions kb/filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,13 @@ sense.kb.addGlobalAutocompleteRules("filter", {
_cache: {__one_of: [ false, true ]}
},
bool: {
must: { __scope_link: ".filter"},
must_not: { __scope_link: ".filter"},
should: [
must: [
{ __scope_link: ".filter"}
],
must_not: [
{ __scope_link: ".filter"}
],
should: [
{ __scope_link: ".filter"}
],
_cache: {__one_of: [ false, true ]}
Expand Down

0 comments on commit 7bdead2

Please sign in to comment.