aboutsummaryrefslogtreecommitdiff
path: root/api/entry.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/entry.go')
-rw-r--r--api/entry.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/api/entry.go b/api/entry.go
index 839f6cac..e8d6c908 100644
--- a/api/entry.go
+++ b/api/entry.go
@@ -132,6 +132,8 @@ func (h *handler) findEntries(w http.ResponseWriter, r *http.Request, feedID int
return
}
+ tags := request.QueryStringParamList(r, "tags")
+
builder := h.store.NewEntryQueryBuilder(userID)
builder.WithFeedID(feedID)
builder.WithCategoryID(categoryID)
@@ -140,6 +142,7 @@ func (h *handler) findEntries(w http.ResponseWriter, r *http.Request, feedID int
builder.WithDirection(direction)
builder.WithOffset(offset)
builder.WithLimit(limit)
+ builder.WithTags(tags)
configureFilters(builder, r)
entries, err := builder.GetEntries()