diff --git a/propelauth_django_rest_framework/__init__.py b/propelauth_django_rest_framework/__init__.py index 1851807..f08681b 100644 --- a/propelauth_django_rest_framework/__init__.py +++ b/propelauth_django_rest_framework/__init__.py @@ -73,6 +73,8 @@ "fetch_custom_role_mappings", "subscribe_org_to_role_mapping", "resend_email_confirmation", + "logout_all_user_sessions", + "fetch_pending_invites", ], ) @@ -165,4 +167,6 @@ def init_auth( 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, + logout_all_user_sessions=auth.logout_all_user_sessions, + fetch_pending_invites=auth.fetch_pending_invites, ) diff --git a/setup.py b/setup.py index d3075be..0c6269e 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="propelauth-django-rest-framework", - version="2.1.15", + version="2.1.16", description="A library for managing authentication in Django Rest Framework", long_description=README, long_description_content_type="text/markdown", @@ -23,7 +23,7 @@ install_requires=[ "django", "djangorestframework", - "propelauth-py==3.1.15", + "propelauth-py==3.1.16", "requests", ], setup_requires=pytest_runner,