1
0
mirror of https://github.com/Prowlarr/Indexers.git synced 2026-04-19 16:08:46 +01:00

Custom headers in login and download blocks

This commit is contained in:
Bogdan
2023-02-20 23:27:29 +02:00
committed by Qstick
parent 85e498e4ca
commit d2af8328db
2 changed files with 48 additions and 0 deletions

View File

@@ -327,6 +327,18 @@
},
"test": {
"$ref": "#/definitions/PageTestBlock"
},
"headers": {
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^[A-Za-z0-9-]*$": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
},
"title": "Login"
@@ -672,6 +684,18 @@
},
"infohash": {
"$ref": "#/definitions/InfoHashBlock"
},
"headers": {
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^[A-Za-z0-9-]*$": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
},
"title": "DownloadBlock"