fix JS auth issue due to missig comma

This commit is contained in:
wing328
2016-08-31 17:50:56 +08:00
parent eb59e2945e
commit d464bfbd59
2 changed files with 14 additions and 6 deletions

View File

@@ -65,8 +65,8 @@
*/
this.authentications = {
'api_key': {type: 'apiKey', 'in': 'header', name: 'api_key'},
'http_basic_test': {type: 'basic'}
'petstore_auth': {type: 'oauth2'},
'http_basic_test': {type: 'basic'},
'petstore_auth': {type: 'oauth2'}
};
/**
* The default HTTP headers to be included for all API calls.