13 lines
260 B
Python
13 lines
260 B
Python
SWAGGER_SETTINGS = {
|
|
'SECURITY_DEFINITIONS': {
|
|
'Basic': {
|
|
'type': 'basic'
|
|
},
|
|
'Bearer': {
|
|
'type': 'apiKey',
|
|
'name': 'Authorization',
|
|
'in': 'header'
|
|
}
|
|
},
|
|
"USE_SESSION_AUTH": False
|
|
} |