novel extensions dont appear on manga entry and viceversa

This commit is contained in:
2026-01-01 19:47:28 +01:00
parent d09c769804
commit edb8a93395
10 changed files with 96 additions and 18 deletions

View File

@@ -6,6 +6,8 @@ async function extensionsRoutes(fastify: FastifyInstance) {
fastify.get('/extensions/anime', controller.getAnimeExtensions);
fastify.post('/extensions/update', controller.updateExtensions);
fastify.get('/extensions/book', controller.getBookExtensions);
fastify.get('/extensions/manga', controller.getMangaExtensions);
fastify.get('/extensions/novel', controller.getNovelExtensions);
fastify.get('/extensions/gallery', controller.getGalleryExtensions);
fastify.get('/extensions/:name/settings', controller.getExtensionSettings);
fastify.post('/extensions/install', controller.installExtension);