Skip to content

Commit

Permalink
fix: remove requirement for smtp section (#3405)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-jonas committed Jul 31, 2023
1 parent ca34e9b commit 59a3f14
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .schemastore/config.schema.json
Expand Up @@ -1778,7 +1778,10 @@
"title": "Delivery Strategy",
"description": "Defines how emails will be sent, either through SMTP (default) or HTTP.",
"type": "string",
"enum": ["smtp", "http"],
"enum": [
"smtp",
"http"
],
"default": "smtp"
},
"http": {
Expand Down Expand Up @@ -1942,9 +1945,6 @@
"additionalProperties": false
}
},
"required": [
"smtp"
],
"additionalProperties": false
},
"oauth2_provider": {
Expand Down Expand Up @@ -1975,10 +1975,10 @@
]
},
"override_return_to": {
"title":"Persist OAuth2 request between flows",
"type":"boolean",
"default":false,
"description":"Override the return_to query parameter with the OAuth2 provider request URL when perfoming an OAuth2 login flow."
"title": "Persist OAuth2 request between flows",
"type": "boolean",
"default": false,
"description": "Override the return_to query parameter with the OAuth2 provider request URL when perfoming an OAuth2 login flow."
}
},
"additionalProperties": false
Expand Down Expand Up @@ -2740,4 +2740,4 @@
"selfservice"
],
"additionalProperties": false
}
}

0 comments on commit 59a3f14

Please sign in to comment.