mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
Allow 'internal' device in WebAuthN (#5756)
This commit is contained in:
parent
68aa92631e
commit
5fefbc94dc
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ export default Vue.extend({
|
||||||
allowCredentials: this.challengeData.securityKeys.map(key => ({
|
allowCredentials: this.challengeData.securityKeys.map(key => ({
|
||||||
id: Buffer.from(key.id, 'hex'),
|
id: Buffer.from(key.id, 'hex'),
|
||||||
type: 'public-key',
|
type: 'public-key',
|
||||||
transports: ['usb', 'ble', 'nfc']
|
transports: ['usb', 'nfc', 'ble', 'internal']
|
||||||
})),
|
})),
|
||||||
timeout: 60 * 1000
|
timeout: 60 * 1000
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue