Small changes to callback params for Atlassian OAuth1 flows (#94395)

This commit is contained in:
James Rucker 2021-03-11 07:26:21 -08:00 committed by GitHub
parent f61657c5e9
commit 0e1fa8d50a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -857,9 +857,10 @@ export function registerOauthConnectorParamsRoute({
validate: {
query: schema.object({
kibana_host: schema.string(),
code: schema.string(),
code: schema.maybe(schema.string()),
session_state: schema.maybe(schema.string()),
state: schema.string(),
oauth_token: schema.maybe(schema.string()),
oauth_verifier: schema.maybe(schema.string()),
}),
},