security_definitions.js 221 B

1234567891011121314151617
  1. 'use strict'
  2. module.exports = {
  3. jwt: {
  4. type: 'apiKey',
  5. in: 'header',
  6. name: 'authorization',
  7. },
  8. basic: {
  9. type: 'basic',
  10. },
  11. token: {
  12. type: 'apiKey',
  13. in: 'query',
  14. name: 'token',
  15. },
  16. }