Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove requirement for smtp section #3405

Merged
merged 1 commit into from
Jul 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .schemastore/config.schema.json
Original file line number Diff line number Diff line change
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
}
}
Loading