From b8cf080e6c4e9f856a7aea6cd03c5af65d3d090e Mon Sep 17 00:00:00 2001 From: kyle Date: Fri, 16 Mar 2018 22:34:54 -0700 Subject: [PATCH] docs: fix broken method table (#4340) --- docs/usage/configuration.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/usage/configuration.md b/docs/usage/configuration.md index 61c530ef..bef4baa3 100644 --- a/docs/usage/configuration.md +++ b/docs/usage/configuration.md @@ -81,6 +81,8 @@ Parameter Name | Description ### Instance methods -`initOAuth` | Provide Swagger-UI with information about your OAuth server - see the OAuth2 documentation for more information. -`preauthorizeBasic` | Programmatically set values for a Basic authorization scheme. -`preauthorizeApiKey` | Programmatically set values for an API key authorization scheme. +Method Name | Description +--- | --- +`initOAuth` | `(configObj) => void`. Provide Swagger-UI with information about your OAuth server - see the OAuth2 documentation for more information. +`preauthorizeBasic` | `(authDefinitionKey, username, password) => action`. Programmatically set values for a Basic authorization scheme. +`preauthorizeApiKey` | `(authDefinitionKey, apiKeyValue) => action`. Programmatically set values for an API key authorization scheme.