Skip to content

Commit

Permalink
Small changes to callback params for Atlassian OAuth1 flows (#94395) (#…
Browse files Browse the repository at this point in the history
…94441)

Co-authored-by: James Rucker <[email protected]>
  • Loading branch information
kibanamachine and James Rucker authored Mar 11, 2021
1 parent e319c29 commit 93e526b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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()),
}),
},
Expand Down

0 comments on commit 93e526b

Please sign in to comment.