Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. "securityDefinitions": {
  2. "UserSecurity": {
  3. "type": "apiKey",
  4. "in": "header",
  5. "name": "SIMPLE-API-KEY"
  6. }
  7. },
  8. "security": {
  9. 'UserSecurity': []
  10. }
  11.  
  12. # Swagger settings
  13. SWAGGER_SETTINGS = {
  14. 'SECURITY_DEFINITIONS': {
  15. 'UserSecurity': {
  16. 'type': 'apiKey',
  17. 'in': 'header',
  18. 'name': 'SIMPLE-API-KEY'
  19. }
  20. },
  21. 'security': {
  22. 'UserSecurity': []
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement