Skip to content

Commit

Permalink
[TIC-527] Fetch user signup query parameters (#17)
Browse files Browse the repository at this point in the history
* feat: add fetch_user_signup_query_params_by_user_id and up version number

* feat: up propelauthpy version number
  • Loading branch information
Itai Levi authored Jan 18, 2024
1 parent 9345fd4 commit 6b38095
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions propelauth_flask/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"fetch_org_by_query",
"fetch_users_by_query",
"fetch_users_in_org",
"fetch_user_signup_query_params_by_user_id",
"create_user",
"update_user_email",
"update_user_metadata",
Expand Down Expand Up @@ -119,6 +120,7 @@ def init_auth(
fetch_batch_user_metadata_by_usernames=auth.fetch_batch_user_metadata_by_usernames,
fetch_org=auth.fetch_org,
fetch_org_by_query=auth.fetch_org_by_query,
fetch_user_signup_query_params_by_user_id=auth.fetch_user_signup_query_params_by_user_id,
fetch_users_by_query=auth.fetch_users_by_query,
fetch_users_in_org=auth.fetch_users_in_org,
create_user=auth.create_user,
Expand Down
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.8",
version="2.1.9",
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<3", "propelauth-py==3.1.9", "requests"],
install_requires=["flask<3", "propelauth-py==3.1.11", "requests"],
setup_requires=pytest_runner,
tests_require=["pytest==4.4.1"],
test_suite="tests",
Expand Down

0 comments on commit 6b38095

Please sign in to comment.