Allow 'internal' device in WebAuthN (#5756)

This commit is contained in:
Satsuki Yanagi 2020-01-27 05:38:40 +09:00 committed by syuilo
parent 01c07d120f
commit bbcc09d426

View file

@ -107,7 +107,7 @@ export default Vue.extend({
allowCredentials: this.challengeData.securityKeys.map(key => ({
id: Buffer.from(key.id, 'hex'),
type: 'public-key',
transports: ['usb', 'ble', 'nfc']
transports: ['usb', 'nfc', 'ble', 'internal']
})),
timeout: 60 * 1000
}