Add Passkey Support & Pint

This commit is contained in:
2026-04-21 15:56:46 +02:00
parent 8ae9eaaadb
commit 05d4ef1bdb
57 changed files with 2151 additions and 716 deletions

View File

@@ -0,0 +1,11 @@
@script
<script>
Livewire.on('passkeyPropertiesValidated', async function (eventData) {
const passkeyOptions = eventData[0].passkeyOptions;
const passkey = await startRegistration({ optionsJSON: passkeyOptions });
@this.call('storePasskey', JSON.stringify(passkey));
});
</script>
@endscript