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

add dateparse validation to schema

This commit is contained in:
Bogdan
2023-02-24 23:48:45 +02:00
committed by bakerboy448
parent 13725602a3
commit b80f665c8a
2 changed files with 42 additions and 0 deletions

View File

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