2023-06-19 17:42:47 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2018-04-29 19:35:04 -04:00
|
|
|
|
2023-08-10 22:46:45 -04:00
|
|
|
package ui // import "miniflux.app/v2/internal/ui"
|
2018-04-29 19:35:04 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2023-08-10 22:46:45 -04:00
|
|
|
"miniflux.app/v2/internal/http/request"
|
|
|
|
"miniflux.app/v2/internal/http/response/json"
|
2018-04-29 19:35:04 -04:00
|
|
|
)
|
|
|
|
|
2018-11-11 14:28:29 -05:00
|
|
|
func (h *handler) markAllAsRead(w http.ResponseWriter, r *http.Request) {
|
2023-05-30 14:29:36 -04:00
|
|
|
if err := h.store.MarkGloballyVisibleFeedsAsRead(request.UserID(r)); err != nil {
|
2019-07-18 00:52:45 -04:00
|
|
|
json.ServerError(w, r, err)
|
|
|
|
return
|
2018-04-29 19:35:04 -04:00
|
|
|
}
|
|
|
|
|
2019-07-18 00:52:45 -04:00
|
|
|
json.OK(w, r, "OK")
|
2018-04-29 19:35:04 -04:00
|
|
|
}
|