23 lines
594 B
Go
23 lines
594 B
Go
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package ui // import "miniflux.app/ui"
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"miniflux.app/http/request"
|
|
"miniflux.app/http/response/html"
|
|
"miniflux.app/http/route"
|
|
"miniflux.app/logger"
|
|
)
|
|
|
|
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 {
|
|
logger.Error("[UI:RemoveAPIKey] %v", err)
|
|
}
|
|
|
|
html.Redirect(w, r, route.Path(h.router, "apiKeys"))
|
|
}
|