Release v0.2.36

This commit is contained in:
ponzischeme89
2026-08-09 12:53:25 +12:00
parent add8aa831c
commit 574826dc03
13 changed files with 193 additions and 63 deletions
+1
View File
@@ -139,6 +139,7 @@ func (s *Server) Routes() http.Handler {
// A genre is browsed, not searched: the chip is a filter and this is the route that
// treats it as one. Paged, because a household's Drama shelf is not a screenful.
v1.Handle("GET /v1/genres/{genre}/items", s.authed(s.handleGenreItems))
v1.Handle("GET /v1/library/items", s.authed(s.handleLibraryItems))
v1.Handle("GET /v1/search/history", s.authed(s.handleRecentSearches))
v1.Handle("POST /v1/search/history", s.authed(s.handleSearchHistory))
v1.Handle("GET /v1/requests/lookup", s.authed(s.handleRequestLookup))