mirror of
https://github.com/C9Glax/tranga.git
synced 2025-10-15 09:50:44 +02:00
Add endpoint that fetches all Metadataentries for Manga
This commit is contained in:
@@ -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": [
|
||||
|
Reference in New Issue
Block a user