You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ch...@apache.org on 2015/06/02 21:31:04 UTC

[14/41] chttpd commit: updated refs/heads/2080-port-cors to e2c2bd7

add setup


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

Branch: refs/heads/2080-port-cors
Commit: e0fa333d7e674a95d0fb64db5de6a208cc7f8a6f
Parents: 8b8e920
Author: Jan Lehnardt <ja...@apache.org>
Authored: Fri Oct 31 15:53:10 2014 +0100
Committer: Alexander Shorin <kx...@apache.org>
Committed: Wed Jan 28 18:52:14 2015 +0300

----------------------------------------------------------------------
 src/chttpd.erl | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/blob/e0fa333d/src/chttpd.erl
----------------------------------------------------------------------
diff --git a/src/chttpd.erl b/src/chttpd.erl
index 1b77da3..9509462 100644
--- a/src/chttpd.erl
+++ b/src/chttpd.erl
@@ -372,6 +372,7 @@ url_handler("_oauth") ->        fun couch_httpd_oauth:handle_oauth_req/1;
 url_handler("_up") ->           fun chttpd_misc:handle_up_req/1;
 url_handler("_membership") ->   fun mem3_httpd:handle_membership_req/1;
 url_handler("_db_updates") ->   fun global_changes_httpd:handle_global_changes_req/1;
+url_handler("_cluster_setup") -> fun setup_httpd:handle_setup_req/1;
 url_handler(_) ->               fun chttpd_db:handle_request/1.
 
 db_url_handlers() ->