Include design documents factoryng

201 Views Asked by At

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

1

There are 1 best solutions below

0
On BEST ANSWER

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 });