Implement Passkey authentication

This commit is contained in:
Stanko K.R.
2026-02-18 11:24:10 +01:00
parent 70c19e4881
commit da69039476
18 changed files with 368 additions and 78 deletions
@@ -25,7 +25,7 @@ export default class extends Controller {
for (const transport of credential.response.getTransports?.() || []) {
const input = document.createElement("input")
input.type = "hidden"
input.name = "credential[response][transports][]"
input.name = "credential[transports][]"
input.value = transport
this.element.appendChild(input)
}