django-passkeys icon indicating copy to clipboard operation
django-passkeys copied to clipboard

Django Authentication Backend For Passkeys

Results 9 django-passkeys issues
Sort by recently updated
recently updated
newest added

Add Support to Django 5.0 and Python3.12

- Update GitHub Actions' steps version. - Update query and syntax in `passkey/views.py`. https://github.com/mkalioby/django-passkeys/blob/abb687b491180c40e1021ecfdb8b734b23d03203/passkeys/views.py#L15-L19 I think there is a risk that Passkey ID on database will be leaked. If you...

I moved all the templates to a subdirectory in the templates folder called passkeys. This is standard in most Django apps and Django docs recommends this so that it minimizes...

Hi! I just wanted to try to add passkeys to my app, but following the instructions i get some errors. 1. "KEY_ATTACHMENT = NONE | passkeys.Attachment.CROSS_PLATFORM | passkeys.Attachment.PLATFORM" NONE is...

Just taking notes for misc grammar / typo fixes: - You didn't have any keys yet. --> You don't have any keys. - This app is a slim-down version -->...

The included templates assume bootstrap and jquery are loaded from the projects base templates. These should probably be either included in the projects static files, or mentioned in the documentation.

As of Django 4.0, Manifest storage searches for map files if they are referenced in the minified file. Running collect static with Django 4.2.1 I get the following error: `...

This PR fixes some typos, formatting issues and small issues. Generally, it makes the README more readable. - It fixes #21. - It fixes the major points of #6, with...

The views `reg_begin` and `reg_complete` both reference `request.user` without having the `@login_required` decorator. Opening these URLs leads to unwanted Internal Server Errors, if the user is not logged in. https://github.com/mkalioby/django-passkeys/blob/310b4f497bb793646eba0c6dc0b00329a98fc240/passkeys/FIDO2.py#L60-L99...