feat(web): add 'Summarized only' filter checkbox to video list
CI / Lint / Test / Vet (push) Failing after 3s
CI / Build & Import (push) Has been skipped

This commit is contained in:
2026-06-06 11:19:18 +02:00
parent 10233ee881
commit 4c5d3cca81
4 changed files with 226 additions and 205 deletions
+4 -3
View File
@@ -164,9 +164,10 @@ func (a *App) handleList(w http.ResponseWriter, r *http.Request) {
}
q := r.URL.Query()
f := Filter{
Channel: q.Get("channel"),
From: q.Get("from"),
To: q.Get("to"),
Channel: q.Get("channel"),
From: q.Get("from"),
To: q.Get("to"),
OnlySummarized: q.Get("summarized") == "1",
}
rows, err := a.Store.ListVideos(r.Context(), userID, 0)