Skip to content
This repository was archived by the owner on Jul 30, 2024. It is now read-only.
Open
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
915b1b4
Security two factor authentication feature
galstat88 Jun 1, 2016
eb6e673
fix double import and unused import, revert get_user
TillerBurr May 7, 2019
8befa63
Merge branch 'develop1' into develop
TillerBurr May 7, 2019
794faea
syntax error
May 8, 2019
3eebb5f
fix missing setup.py install_requires
May 8, 2019
ab07db1
fix TestMail (remove __init_)
May 8, 2019
4e1b9cb
verify_and_update_password fix
May 8, 2019
cf617fd
formatting
May 8, 2019
0f23a50
more formatting
May 8, 2019
09e9c69
too many blank lines
May 8, 2019
9cfa47d
double imports in forms.py
May 8, 2019
6a932b0
formatting forms.py
May 8, 2019
9fa6005
signals line length
May 8, 2019
117a0e1
twofactor formatting
May 8, 2019
46c77af
utils formatting
May 8, 2019
0944672
update twilio client import
May 8, 2019
d1f854d
missing import
May 8, 2019
f8c00ec
blueprint line length (twofactor)
May 8, 2019
1d1578c
trailing whitespace...
May 8, 2019
47a5cd5
line too long/import/authors inadv. deleted
May 9, 2019
948d248
TillerBurr May 10, 2019
a2c82c8
update install_requires in setup.py
May 10, 2019
d7d0cb4
bump flask_sqlalchemy
May 10, 2019
5076a3c
conftest.py allow nulls in sqlalchemy
May 10, 2019
176b8ca
Spelling, Update Functions and Tests Python 3.7 Support
TillerBurr May 13, 2019
a9feee7
Update docs/configuration.rst
TillerBurr May 28, 2019
185fcbc
consistent two-factor
TillerBurr May 28, 2019
148f866
.gitignore .venv/
TillerBurr May 28, 2019
3b90197
fixes. passlib.totp, if not request.is_json
TillerBurr May 28, 2019
0b0c366
translation stubs for new messages
TillerBurr May 28, 2019
4a766a1
Make two-factor login more JSON friendly
TillerBurr May 28, 2019
4f909eb
make pyqrcode and onetimepass optional, check imps
TillerBurr May 30, 2019
7ef9003
fix function def and import
TillerBurr May 30, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
verify_and_update_password fix
  • Loading branch information
tbaur committed May 8, 2019
commit 4e1b9cb28e75fab06358f9317f3f2dce2b94596b
2 changes: 1 addition & 1 deletion flask_security/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
TwoFactorSetupForm, TwoFactorChangeMethodVerifyPasswordForm, TwoFactorRescueForm
from .utils import config_value as cv
from .utils import _, get_config, hash_data, localize_callback, string_types, \
url_for_security, verify_hash, send_mail
url_for_security, verify_hash, send_mail, verify_and_update_password
from .views import create_blueprint


Expand Down