diff options
Diffstat (limited to 'src/chttpd.erl')
-rw-r--r-- | src/chttpd.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/chttpd.erl b/src/chttpd.erl index a4bb1293..93047b80 100644 --- a/src/chttpd.erl +++ b/src/chttpd.erl @@ -212,7 +212,8 @@ design_url_handlers() -> {<<"_show">>, fun chttpd_show:handle_doc_show_req/3}, {<<"_list">>, fun chttpd_show:handle_view_list_req/3}, {<<"_update">>, fun chttpd_show:handle_doc_update_req/3}, - {<<"_info">>, fun chttpd_db:handle_design_info_req/3} + {<<"_info">>, fun chttpd_db:handle_design_info_req/3}, + {<<"_rewrite">>, fun chttpd_rewrite:handle_rewrite_req/3} ]. % Utilities |