1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-21 18:11:09 +00:00

Add enclosures to /v1/entries API endpoint

This commit is contained in:
Frédéric Guillot 2023-10-05 20:51:00 -07:00
parent fccc25f7a3
commit 6dd090a848
3 changed files with 31 additions and 11 deletions

View file

@ -147,6 +147,7 @@ func (h *handler) findEntries(w http.ResponseWriter, r *http.Request, feedID int
builder.WithOffset(offset)
builder.WithLimit(limit)
builder.WithTags(tags)
builder.WithEnclosures()
configureFilters(builder, r)
entries, err := builder.GetEntries()