mirror of
https://github.com/miniflux/v2.git
synced 2025-06-27 16:36:00 +00:00
Display list of feeds per category
This commit is contained in:
parent
15fe9c20df
commit
fad9ad2be4
22 changed files with 345 additions and 141 deletions
1
ui/ui.go
1
ui/ui.go
|
@ -74,6 +74,7 @@ func Serve(router *mux.Router, store *storage.Storage, pool *worker.Pool, feedHa
|
|||
uiRouter.HandleFunc("/categories", handler.showCategoryListPage).Name("categories").Methods("GET")
|
||||
uiRouter.HandleFunc("/category/create", handler.showCreateCategoryPage).Name("createCategory").Methods("GET")
|
||||
uiRouter.HandleFunc("/category/save", handler.saveCategory).Name("saveCategory").Methods("POST")
|
||||
uiRouter.HandleFunc("/category/{categoryID}/feeds", handler.showCategoryFeedsPage).Name("categoryFeeds").Methods("GET")
|
||||
uiRouter.HandleFunc("/category/{categoryID}/entries", handler.showCategoryEntriesPage).Name("categoryEntries").Methods("GET")
|
||||
uiRouter.HandleFunc("/category/{categoryID}/entries/all", handler.showCategoryEntriesAllPage).Name("categoryEntriesAll").Methods("GET")
|
||||
uiRouter.HandleFunc("/category/{categoryID}/edit", handler.showEditCategoryPage).Name("editCategory").Methods("GET")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue