1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-01-03 13:46:10 +00:00

cardigann: add dateparse schema validation. related to #14072 (#14087)

This commit is contained in:
Bogdan 2023-02-25 00:17:22 +02:00 committed by GitHub
parent 1ec507b6e0
commit 37455119e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -842,6 +842,27 @@
"required": [
"name"
],
"allOf": [
{
"if": {
"properties": {
"name": {
"const": "dateparse"
}
}
},
"then": {
"properties": {
"args": {
"type": "string",
"not": {
"pattern": "\\d"
}
}
}
}
}
],
"title": "FilterBlock"
},
"IndexerCategories": {