Add security to openapi spec

This commit is contained in:
shopeonarope 2020-12-03 19:49:45 -07:00 committed by Kyle Brown
parent 4134220c54
commit a86172fda4

View File

@ -12,6 +12,9 @@
'servers':
- 'url': '/control'
'security':
- 'basicAuth': []
'tags':
- 'name': 'clients'
'description': 'Clients list operations'
@ -2084,3 +2087,7 @@
'description': 'The error message, an opaque string.'
'type': 'string'
'type': 'object'
'securitySchemes':
'basicAuth':
'type': 'http'
'scheme': 'basic'