mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
18 lines
221 B
JavaScript
18 lines
221 B
JavaScript
|
'use strict'
|
||
|
|
||
|
module.exports = {
|
||
|
jwt: {
|
||
|
type: 'apiKey',
|
||
|
in: 'header',
|
||
|
name: 'authorization',
|
||
|
},
|
||
|
basic: {
|
||
|
type: 'basic',
|
||
|
},
|
||
|
token: {
|
||
|
type: 'apiKey',
|
||
|
in: 'query',
|
||
|
name: 'token',
|
||
|
},
|
||
|
}
|