| 1234567891011121314151617181920212223 |
- // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
- // SPDX-License-Identifier: Apache-2.0
- package response // import "miniflux.app/v2/internal/http/response"
- import "net/http"
- // XML writes a standard XML response with a status 200 OK.
- func XML(w http.ResponseWriter, r *http.Request, body string) {
- NewBuilder(w, r).
- WithHeader("Content-Type", "text/xml; charset=utf-8").
- WithBodyAsString(body).
- Write()
- }
- // XMLAttachment forces the XML document to be downloaded by the web browser.
- func XMLAttachment(w http.ResponseWriter, r *http.Request, filename string, body string) {
- NewBuilder(w, r).
- WithHeader("Content-Type", "text/xml; charset=utf-8").
- WithAttachment(filename).
- WithBodyAsString(body).
- Write()
- }
|