Github user garrensmith commented on a diff in the pull request:
https://github.com/apache/couchdb-fauxton/pull/570#discussion_r43137239
--- Diff: app/addons/documents/routes-documents.js ---
@@ -154,6 +163,10 @@ function (app, FauxtonAPI, BaseRoute, Documents,
Changes, ChangesActions, Databa
this.rightHeader.showQueryOptions();
},
+ replicatorShowDocsOnDefault: function () {
--- End diff --
Maybe instead of having a set url for the replicator. Rather have a
function in the all_docs thats checks if the databaseName matches an item in an
array. If so turn include_docs on.
``` js
if ( ['_replicator', '_user'].indexOf(databaseName) > -1) {
docParams.include_docs = true;
}
```
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---