fix: fix the name of OpenID Connect security scheme (#1425)

The official name of the OpenID Connect security scheme does not contain a space between 'Open' and 'ID', see https://openid.net/connect/.
This commit is contained in:
Dávid Kaya 2020-10-27 09:42:26 +01:00 committed by GitHub
parent 1fdfd1353d
commit c11f679f82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ const AUTH_TYPES = {
oauth2: 'OAuth2',
apiKey: 'API Key',
http: 'HTTP',
openIdConnect: 'Open ID Connect',
openIdConnect: 'OpenID Connect',
};
export interface OAuthFlowProps {