2023-06-19 14:42:47 -07:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2020-03-01 17:38:29 -08:00
|
|
|
|
2023-08-10 19:46:45 -07:00
|
|
|
package ui // import "miniflux.app/v2/internal/ui"
|
2020-03-01 17:38:29 -08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2023-08-10 19:46:45 -07:00
|
|
|
"miniflux.app/v2/internal/http/request"
|
|
|
|
"miniflux.app/v2/internal/http/response/html"
|
|
|
|
"miniflux.app/v2/internal/http/route"
|
2020-03-01 17:38:29 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
func (h *handler) removeAPIKey(w http.ResponseWriter, r *http.Request) {
|
|
|
|
keyID := request.RouteInt64Param(r, "keyID")
|
|
|
|
err := h.store.RemoveAPIKey(request.UserID(r), keyID)
|
|
|
|
if err != nil {
|
2023-09-24 16:32:09 -07:00
|
|
|
html.ServerError(w, r, err)
|
|
|
|
return
|
2020-03-01 17:38:29 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
html.Redirect(w, r, route.Path(h.router, "apiKeys"))
|
|
|
|
}
|