Skip to content
This repository has been archived by the owner on Jan 5, 2019. It is now read-only.

Commit

Permalink
Merge pull request #41 from rwdavis513/recipe_interpreter_v3
Browse files Browse the repository at this point in the history
modified required recipe fields
  • Loading branch information
rbaynes committed Jun 7, 2017
2 parents 6ff055c + f284512 commit 9f106bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openag/_design/recipes/validate_doc_update.js
Expand Up @@ -2,7 +2,7 @@ function(newDoc, oldDoc, userCtx, secObj) {
if (newDoc._deleted) {
return;
}
var required_fields = ['format', 'operations'];
var required_fields = ['format'];
var field;
for (var i in required_fields) {
field = required_fields[i];
Expand Down

0 comments on commit 9f106bb

Please sign in to comment.