Commit 79fd7311 authored by Tristan Cavelier's avatar Tristan Cavelier

getAttachment job rule added

parent ffd9504f
...@@ -250,6 +250,7 @@ var jobRules = (function () { ...@@ -250,6 +250,7 @@ var jobRules = (function () {
" putA " " " putA " "
" remove " update " remove " update
get get same doc, same options update get get same doc, same options update
getA getA same doc, same options update
allDocs allDocs same doc, same options update allDocs allDocs same doc, same options update
*/ */
...@@ -300,6 +301,8 @@ var jobRules = (function () { ...@@ -300,6 +301,8 @@ var jobRules = (function () {
that.addActionRule("get", "get", that.addActionRule("get", "get",
[that.sameDocument, that.sameOption], that.update); [that.sameDocument, that.sameOption], that.update);
that.addActionRule("getAttachment", "getAttachment",
[that.sameDocument, that.sameOption], that.update);
that.addActionRule("allDocs", "allDocs", that.addActionRule("allDocs", "allDocs",
[that.sameDocument, that.sameOption], that.update); [that.sameDocument, that.sameOption], that.update);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment