Skip to content

Commit

Permalink
feat: integrated the All feeds category into the default categories
Browse files Browse the repository at this point in the history
  • Loading branch information
TypicalAM committed Jan 13, 2023
1 parent 2d89281 commit 59ad1dd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions internal/rss/rss.go
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,11 @@ func HTMLToText(content string) (string, error) {
func createBasicCategories() []Category {
var categories []Category

categories = append(categories, Category{
Name: AllFeedsName,
Description: "All feeds",
})

categories = append(categories, Category{
Name: "News",
Description: "News from around the world",
Expand Down

0 comments on commit 59ad1dd

Please sign in to comment.