0

The default settings in factoryng filter out design documents. How can I include these design documents?

redgeoff
  • 3,163
  • 1
  • 25
  • 39

1 Answers1

1

You can define this via the properties() method, e.g.:

var tasks = new Pouchyng('tasks', 'http://localhost:5984', yngutils.ASC);
var config = {
  opts: {
    filter: function (doc) {
      return true;
    }
  }
}; 
tasks.properties({ changes: config, to: config, from: config });
redgeoff
  • 3,163
  • 1
  • 25
  • 39