diff --git a/API/Controllers/MangaController.cs b/API/Controllers/MangaController.cs
index 322ae28..1082adb 100644
--- a/API/Controllers/MangaController.cs
+++ b/API/Controllers/MangaController.cs
@@ -43,6 +43,20 @@ public class MangaController(MangaContext context) : Controller
return Ok(context.Mangas.Select(m => m.Key).ToArray());
}
+ ///
+ /// Returns all that are being downloaded from at least one
+ ///
+ ///
+ [HttpGet("Downloading")]
+ [ProducesResponseType(Status200OK, "application/json")]
+ public IActionResult GetMangaDownloading()
+ {
+ Manga[] ret = context.MangaIncludeAll()
+ .Where(m => m.MangaConnectorIds.Any(id => id.UseForDownload))
+ .ToArray();
+ return Ok(ret);
+ }
+
///
/// Returns all cached with
///
diff --git a/API/Controllers/QueryController.cs b/API/Controllers/QueryController.cs
index b8c692d..27b1af1 100644
--- a/API/Controllers/QueryController.cs
+++ b/API/Controllers/QueryController.cs
@@ -65,21 +65,7 @@ public class QueryController(MangaContext context) : Controller
}
///
- /// Returns all that are being downloaded from at least one
- ///
- ///
- [HttpGet("Manga/Downloading")]
- [ProducesResponseType(Status200OK, "application/json")]
- public IActionResult GetMangaDownloading()
- {
- Manga[] ret = context.MangaIncludeAll()
- .Where(m => m.MangaConnectorIds.Any(id => id.UseForDownload))
- .ToArray();
- return Ok(ret);
- }
-
- ///
- /// Returns with names similar to (identified by
+ /// Returns with names similar to (identified by )
///
/// Key of
///