extension allows filtering for search

This commit is contained in:
2026-01-12 17:05:38 +01:00
parent 34f9e44020
commit dbb3c3f924
16 changed files with 319 additions and 46 deletions

View File

@@ -7,6 +7,7 @@ async function animeRoutes(fastify: FastifyInstance) {
fastify.get('/trending', controller.getTrending);
fastify.get('/top-airing', controller.getTopAiring);
fastify.get('/search', controller.search);
fastify.get('/search/advanced', controller.searchAdvanced);
fastify.get('/search/:extension', controller.searchInExtension);
fastify.get('/watch/stream', controller.getWatchStream);
fastify.post('/watch/mpv', controller.openInMPV);