Skip to content

Commit

Permalink
feat(view): Add match_all leaf query view
Browse files Browse the repository at this point in the history
This one's real simple
  • Loading branch information
orangejulius committed Sep 10, 2019
1 parent dafca97 commit 05d7c93
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module.exports.layout = {

module.exports.view = {
leaf: {
match_all: require('./view/leaf/match_all'),
match_phrase: require('./view/leaf/match_phrase')
},
focus: require('./view/focus'),
Expand Down
5 changes: 5 additions & 0 deletions view/leaf/match_all.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = function( vs ) {
return {
match_all: {}
};
};

0 comments on commit 05d7c93

Please sign in to comment.