-
Notifications
You must be signed in to change notification settings - Fork 742
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ui): Redirect correctly post feed removal from category feeds list
Currently, removing a feed from `/category/{id}/feeds` redirects incorrectly to `/feeds`. This change fixes it so that removing a feed will now correctly redirect to `/category/{id}/feeds`. Removing a feed from `/feeds` is unaffected and will work as it does currently. To fix this, a new UI endpoint `/category/{categoryID}/feed/{feedID}/remove` is added and a corresponding handler method to validate and perform the removal from DB.
- Loading branch information
1 parent
bae872e
commit 5b57117
Showing
5 changed files
with
44 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package ui // import "miniflux.app/v2/internal/ui" | ||
|
||
import ( | ||
"net/http" | ||
|
||
"miniflux.app/v2/internal/http/request" | ||
"miniflux.app/v2/internal/http/response/html" | ||
"miniflux.app/v2/internal/http/route" | ||
) | ||
|
||
func (h *handler) removeCategoryFeed(w http.ResponseWriter, r *http.Request) { | ||
feedID := request.RouteInt64Param(r, "feedID") | ||
categoryID := request.RouteInt64Param(r, "categoryID") | ||
|
||
if !h.store.CategoryFeedExists(request.UserID(r), categoryID, feedID) { | ||
html.NotFound(w, r) | ||
return | ||
} | ||
|
||
if err := h.store.RemoveFeed(request.UserID(r), feedID); err != nil { | ||
html.ServerError(w, r, err) | ||
return | ||
} | ||
|
||
html.Redirect(w, r, route.Path(h.router, "categoryFeeds", "categoryID", categoryID)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters