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/html"
|
|
|
|
"miniflux.app/v2/internal/http/route"
|
2018-04-29 19:35:04 -04:00
|
|
|
)
|
|
|
|
|
2018-11-11 14:28:29 -05:00
|
|
|
func (h *handler) removeSession(w http.ResponseWriter, r *http.Request) {
|
2018-09-24 00:02:26 -04:00
|
|
|
sessionID := request.RouteInt64Param(r, "sessionID")
|
2018-11-11 14:28:29 -05:00
|
|
|
err := h.store.RemoveUserSessionByID(request.UserID(r), sessionID)
|
2018-04-29 19:35:04 -04:00
|
|
|
if err != nil {
|
2023-09-24 19:32:09 -04:00
|
|
|
html.ServerError(w, r, err)
|
|
|
|
return
|
2018-04-29 19:35:04 -04:00
|
|
|
}
|
|
|
|
|
2018-11-11 14:28:29 -05:00
|
|
|
html.Redirect(w, r, route.Path(h.router, "sessions"))
|
2018-04-29 19:35:04 -04:00
|
|
|
}
|