Skip to content

Commit

Permalink
Fix an issue in openapi.yaml. (#759)
Browse files Browse the repository at this point in the history
In our sample, both api_key and the auth issuer are required, the config
should use "AND" semantics.
  • Loading branch information
liminw authored and lesv committed Jul 18, 2017
1 parent a77fee7 commit 6ad0db1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions endpoints/getting-started/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ paths:
$ref: "#/definitions/authInfoResponse"
security:
- api_key: []
- google_jwt: []
google_jwt: []
"/auth/info/googleidtoken":
get:
description: "Returns the requests' authentication information."
Expand All @@ -79,7 +79,7 @@ paths:
$ref: "#/definitions/authInfoResponse"
security:
- api_key: []
- google_id_token: []
google_id_token: []
definitions:
echoMessage:
properties:
Expand Down

0 comments on commit 6ad0db1

Please sign in to comment.