Skip to content

Commit

Permalink
fix(mfa): some passkey related misspellings
Browse files Browse the repository at this point in the history
# Submitting Pull Requests

## General

 - [ ] Make sure you use [semantic commit messages](https://seesparkbox.com/foundry/semantic_commit_messages).
       Examples: `"fix(google): Fixed foobar bug"`, `"feat(accounts): Added foobar feature"`.
 - [ ] All Python code must formatted using Black, and clean from pep8 and isort issues.
 - [ ] JavaScript code should adhere to [StandardJS](https://standardjs.com).
 - [ ] If your changes are significant, please update `ChangeLog.rst`.
 - [ ] If your change is substantial, feel free to add yourself to `AUTHORS`.

 ## Provider Specifics

 In case you add a new provider:

- [ ] Make sure unit tests are available.
- [ ] Add an entry of your provider in `test_settings.py::INSTALLED_APPS` and `docs/installation.rst::INSTALLED_APPS`.
- [ ] Add documentation to `docs/providers/<provider name>.rst` and `docs/providers/index.rst` Provider Specifics toctree.
- [ ] Add an entry to the list of supported providers over at `docs/overview.rst`.

Reviewed-on: https://codeberg.org/allauth/django-allauth/pulls/4118
Co-authored-by: Ryan Hiebert <[email protected]>
Co-committed-by: Ryan Hiebert <[email protected]>
  • Loading branch information
ryanhiebert authored and pennersr committed Sep 21, 2024
1 parent 521cce4 commit 6401e42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ChangeLog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
agent for a session changes.

- Added support for signup using a passkey. See
``settings.MFA_PASSKEY_SIGNUP_EMANED``.
``settings.MFA_PASSKEY_SIGNUP_ENABLED``.


Backwards incompatible changes
Expand Down
2 changes: 1 addition & 1 deletion allauth/mfa/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def settings_check(app_configs, **kwargs):
):
ret.append(
Critical(
msg="MFA_PASSKEY_SIGNUP_ENABLED requires ACCOUNT_EMAIL_VERIFCIATION = 'mandatory'"
msg="MFA_PASSKEY_SIGNUP_ENABLED requires ACCOUNT_EMAIL_VERIFICIATION = 'mandatory'"
)
)
return ret

0 comments on commit 6401e42

Please sign in to comment.