Skip to content

Commit

Permalink
Add update_password and askUserToUpdatePasswordOnLogin option
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-propelauth committed Feb 15, 2023
1 parent 3698dd4 commit d29e5a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions propelauth_flask/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"create_user",
"update_user_email",
"update_user_metadata",
"update_user_password",
"create_magic_link", "migrate_user_from_external_source", "create_org", "add_user_to_org",
"delete_user", "disable_user", "enable_user",
"allow_org_to_setup_saml_connection", "disallow_org_to_setup_saml_connection"
Expand Down Expand Up @@ -67,6 +68,7 @@ def init_auth(auth_url: str, api_key: str, token_verification_metadata: TokenVer
create_user=auth.create_user,
update_user_email=auth.update_user_email,
update_user_metadata=auth.update_user_metadata,
update_user_password=auth.update_user_password,
create_magic_link=auth.create_magic_link,
migrate_user_from_external_source=auth.migrate_user_from_external_source,
create_org=auth.create_org,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="propelauth-flask",
version="2.0.0",
version="2.0.1",
description="A library for managing authentication in Flask",
long_description=README,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit d29e5a4

Please sign in to comment.