2018-04-29 16:35:04 -07:00
|
|
|
// Copyright 2018 Frédéric Guillot. All rights reserved.
|
|
|
|
// Use of this source code is governed by the Apache 2.0
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2018-09-03 14:26:40 -07:00
|
|
|
package ui // import "miniflux.app/ui"
|
2018-04-29 16:35:04 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2018-09-03 14:26:40 -07:00
|
|
|
"miniflux.app/http/request"
|
2019-07-17 21:29:00 -07:00
|
|
|
"miniflux.app/http/response/json"
|
2018-04-29 16:35:04 -07:00
|
|
|
)
|
|
|
|
|
2018-11-11 11:28:29 -08:00
|
|
|
func (h *handler) flushHistory(w http.ResponseWriter, r *http.Request) {
|
|
|
|
err := h.store.FlushHistory(request.UserID(r))
|
2018-04-29 16:35:04 -07:00
|
|
|
if err != nil {
|
2019-07-17 21:29:00 -07:00
|
|
|
json.ServerError(w, r, err)
|
2018-04-29 16:35:04 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-07-17 21:29:00 -07:00
|
|
|
json.OK(w, r, "OK")
|
2018-04-29 16:35:04 -07:00
|
|
|
}
|