Parse defined security requirements correctly

This commit is contained in:
richie
2016-10-14 17:44:27 -07:00
parent 312f68ae72
commit 23f4120fe3
5 changed files with 21 additions and 15 deletions

View File

@@ -51,9 +51,9 @@ RSpec.configure do |config|
in: :query
}
},
security: {
api_key: []
}
security: [
{ api_key: [] }
]
}
}
end

View File

@@ -145,9 +145,11 @@
"in": "query"
}
},
"security": {
"api_key": [
"security": [
{
"api_key": [
]
}
]
}
]
}