Change GET /v2/Manga to /v2/Mangas

This commit is contained in:
2024-04-26 00:16:28 +02:00
parent 5b22246c41
commit 0735e2c588
3 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ namespace Tranga.Server;
public partial class Server
{
private ValueTuple<HttpStatusCode, object?> GetV2Manga(GroupCollection groups, Dictionary<string, string> requestParameters)
private ValueTuple<HttpStatusCode, object?> GetV2Mangas(GroupCollection groups, Dictionary<string, string> requestParameters)
{
return new ValueTuple<HttpStatusCode, object?>(HttpStatusCode.OK, GetAllCachedManga().Select(m => m.internalId));
}