fixed #346 - removed oob auth from http protocol valid auths list

This commit is contained in:
Eugene Pankov 2022-09-16 18:07:07 +02:00
parent 9d44a7259f
commit 07e26711df
No known key found for this signature in database
GPG key ID: 5896FCBBDD1CF4F4

View file

@ -19,7 +19,7 @@ let isAny = !value[protocolId]
let validCredentials = new Set<string>()
const possibleCredentials = {
ssh: new Set(['Password', 'PublicKey', 'Totp', 'WebUserApproval']),
http: new Set(['Password', 'Totp', 'Sso', 'WebUserApproval']),
http: new Set(['Password', 'Totp', 'Sso']),
mysql: new Set(['Password']),
}[protocolId]!
$: {