Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Add support for bearer auth #216

Merged
merged 3 commits into from
May 22, 2019
Merged

Add support for bearer auth #216

merged 3 commits into from
May 22, 2019

Commits on May 20, 2019

  1. Add support for bearer auth

    Bearer authentication is just a regular API key:
    https://swagger.io/docs/specification/authentication/bearer-authentication/
    
    But it comes through like this:
    
    ```
    {
      type: 'http',
      scheme: 'bearer'
    }
    ```
    
    Which `getAuth()` incorrectly picked up as though it should be HTTP auth.
    
    This adds support for bearer to `getAuth()`
    domharrington committed May 20, 2019
    Configuration menu
    Copy the full SHA
    7d99b85 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0e238c7 View commit details
    Browse the repository at this point in the history
  3. Prettier

    domharrington committed May 20, 2019
    Configuration menu
    Copy the full SHA
    1cf8e69 View commit details
    Browse the repository at this point in the history