diff options
author | suelockwood <deathbear@apache.org> | 2014-02-26 17:00:07 -0500 |
---|---|---|
committer | suelockwood <deathbear@apache.org> | 2014-02-26 17:00:07 -0500 |
commit | 055219f106b271dc17f0e469fb967489f4ef962e (patch) | |
tree | 0e4d8c60696d05a3a06eae163291e484cef8bcd6 | |
parent | 5989bb324a7998f931050b542f7e526309bdcc32 (diff) | |
download | couchdb-055219f106b271dc17f0e469fb967489f4ef962e.tar.gz |
Remove caching from design docs, so that edit revisions are updated
-rw-r--r-- | src/fauxton/app/addons/documents/routes.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fauxton/app/addons/documents/routes.js b/src/fauxton/app/addons/documents/routes.js index be9ce2f7c..1510485ee 100644 --- a/src/fauxton/app/addons/documents/routes.js +++ b/src/fauxton/app/addons/documents/routes.js @@ -182,7 +182,7 @@ function(app, FauxtonAPI, Documents, Databases) { }, establish: function () { - return this.data.designDocs.fetchOnce(); + return this.data.designDocs.fetch(); }, allDocs: function(databaseName, options) { |