You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ga...@apache.org on 2017/02/21 08:27:41 UTC

fauxton commit: updated refs/heads/master to 65016d5

Repository: couchdb-fauxton
Updated Branches:
  refs/heads/master 367d42268 -> 65016d595


replace url construction with FauxtonAPI lookup


Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/65016d59
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/65016d59
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/65016d59

Branch: refs/heads/master
Commit: 65016d595fb70f9a5a7765354e889423169269cd
Parents: 367d422
Author: Ryan Millay <ry...@gmail.com>
Authored: Mon Feb 20 15:45:40 2017 -0500
Committer: Garren Smith <ga...@gmail.com>
Committed: Tue Feb 21 10:27:23 2017 +0200

----------------------------------------------------------------------
 app/addons/documents/resources.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/65016d59/app/addons/documents/resources.js
----------------------------------------------------------------------
diff --git a/app/addons/documents/resources.js b/app/addons/documents/resources.js
index eeb3a15..5349e16 100644
--- a/app/addons/documents/resources.js
+++ b/app/addons/documents/resources.js
@@ -351,7 +351,7 @@ Documents.BulkDeleteDocCollection = FauxtonAPI.Collection.extend({
   },
 
   url: function () {
-    return app.host + '/' + this.databaseId + '/_bulk_docs';
+    return FauxtonAPI.urls('bulk_docs', 'server', this.databaseId, '');
   },
 
   bulkDelete: function () {