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/2398380e Tree: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/tree/2398380e Diff: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/diff/2398380e Branch: refs/heads/setup Commit: 2398380e61070a21b827030d67b86e301fd7614e Parents: 8b8e920 Author: Jan Lehnardt <[email protected]> Authored: Fri Oct 31 15:53:10 2014 +0100 Committer: Alexander Shorin <[email protected]> Committed: Wed Jan 28 18:17:37 2015 +0300 ---------------------------------------------------------------------- src/chttpd.erl | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/blob/2398380e/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() ->
