mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-11 09:51:30 +00:00
* fix: 3296 Folder-level No Auth inheritance is ignored; requests still use Collection Auth
14 lines
292 B
TypeScript
14 lines
292 B
TypeScript
export const AUTH_MODE_LABELS = {
|
|
AWSV4: 'AWS Sig v4',
|
|
BASIC: 'Basic Auth',
|
|
BEARER: 'Bearer Token',
|
|
DIGEST: 'Digest Auth',
|
|
NTLM: 'NTLM Auth',
|
|
OAUTH1: 'OAuth 1.0',
|
|
OAUTH2: 'OAuth 2.0',
|
|
WSSE: 'WSSE Auth',
|
|
APIKEY: 'API Key',
|
|
INHERIT: 'Inherit',
|
|
NONE: 'No Auth'
|
|
} as const;
|