fix: make bulk options distinct

This commit is contained in:
Paul Makles
2022-05-07 16:37:31 +01:00
parent 321c07a15b
commit 1556289528
4 changed files with 27 additions and 3 deletions
+19 -1
View File
@@ -1713,7 +1713,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OptionsMessageSearch"
"$ref": "#/components/schemas/OptionsBulkDelete"
}
}
},
@@ -6996,6 +6996,24 @@
}
}
},
"OptionsBulkDelete": {
"title": "Search Parameters",
"type": "object",
"required": [
"ids"
],
"properties": {
"ids": {
"description": "Message IDs",
"type": "array",
"items": {
"type": "string"
},
"maxItems": 100,
"minItems": 1
}
}
},
"DataCreateGroup": {
"title": "Group Data",
"type": "object",