Add endpoint that fetches all Metadataentries for Manga

This commit is contained in:
2025-10-14 10:42:30 +02:00
parent 4281c93f9a
commit b6aab4eb8d
2 changed files with 56 additions and 1 deletions

View File

@@ -1673,6 +1673,45 @@
}
}
},
"/v2/MetadataFetcher/Links/{MangaId}": {
"get": {
"tags": [
"MetadataFetcher"
],
"summary": "Returns all API.Schema.MangaContext.MetadataFetchers.MetadataEntry for API.Schema.MangaContext.Manga with MangaId",
"parameters": [
{
"name": "MangaId",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "",
"content": {
"application/json; x-version=2.0": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MetadataEntry"
}
}
}
}
},
"500": {
"description": "Internal Server Error"
},
"404": {
"description": "API.Schema.MangaContext.Manga with MangaId not found"
}
}
}
},
"/v2/MetadataFetcher/{MetadataFetcherName}/SearchManga/{MangaId}": {
"post": {
"tags": [