Skip to content

Commit

Permalink
update to propelauth-py 3.1.15 (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmauer authored Jun 11, 2024
1 parent 1ab8d00 commit 521c9cd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions propelauth_flask/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@
"delete_org",
"invite_user_to_org",
"remove_user_from_org",
"fetch_custom_role_mappings",
"subscribe_org_to_role_mapping",
"resend_email_confirmation",
],
)

Expand Down Expand Up @@ -153,4 +156,7 @@ def init_auth(
validate_api_key=auth.validate_api_key,
validate_personal_api_key=auth.validate_personal_api_key,
validate_org_api_key=auth.validate_org_api_key,
fetch_custom_role_mappings=auth.fetch_custom_role_mappings,
subscribe_org_to_role_mapping=auth.subscribe_org_to_role_mapping,
resend_email_confirmation=auth.resend_email_confirmation,
)
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name="propelauth-flask",
version="2.1.14",
version="2.1.15",
description="A library for managing authentication in Flask",
long_description=README,
long_description_content_type="text/markdown",
Expand All @@ -20,7 +20,7 @@
author="PropelAuth",
author_email="[email protected]",
license="MIT",
install_requires=["flask<4", "propelauth-py==3.1.14", "requests"],
install_requires=["flask<4", "propelauth-py==3.1.15", "requests"],
setup_requires=pytest_runner,
tests_require=["pytest==4.4.1"],
test_suite="tests",
Expand Down

0 comments on commit 521c9cd

Please sign in to comment.