HTTP handler for DELETE _design/$ddoc
()
| 67 | |
| 68 | // HTTP handler for DELETE _design/$ddoc |
| 69 | func (h *handler) handleDeleteDesignDoc() error { |
| 70 | ddocID := h.PathVar("ddoc") |
| 71 | return h.db.DeleteDesignDoc(ddocID) |
| 72 | } |
| 73 | |
| 74 | // HTTP handler for GET _design/$ddoc/_view/$view |
| 75 | func (h *handler) handleView() error { |
nothing calls this directly
no test coverage detected