Skip to content

Commit 8497022

Browse files
authored
Merge pull request #4076 from Nephiel/4074-fix-1
Fix schema validation errors
2 parents fe2d889 + fa2c814 commit 8497022

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/schema/components/redirection-host-object.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"forward_scheme": {
3030
"type": "string",
31-
"enum": ["http", "https"]
31+
"enum": ["auto", "http", "https"]
3232
},
3333
"forward_domain_name": {
3434
"description": "Domain Name",

backend/schema/components/setting-object.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"value": {
2626
"description": "Value in almost any form",
2727
"example": "congratulations",
28-
"oneOf": [
28+
"anyOf": [
2929
{
3030
"type": "string",
3131
"minLength": 1

0 commit comments

Comments
 (0)