Skip to content

Commit

Permalink
pass through new saml setup methods to outer auth object
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmauer committed Nov 14, 2024
1 parent 3c727b2 commit cbd2f8d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions propelauth_flask/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@
"resend_email_confirmation",
"fetch_pending_invites",
"logout_all_user_sessions",
"fetch_saml_sp_metadata",
"set_saml_idp_metadata",
"saml_go_live",
"delete_saml_connection",
],
)

Expand Down Expand Up @@ -165,4 +169,8 @@ def init_auth(
fetch_pending_invites=auth.fetch_pending_invites,
logout_all_user_sessions=auth.logout_all_user_sessions,
revoke_pending_org_invite=auth.revoke_pending_org_invite,
fetch_saml_sp_metadata=auth.fetch_saml_sp_metadata,
set_saml_idp_metadata=auth.set_saml_idp_metadata,
saml_go_live=auth.saml_go_live,
delete_saml_connection=auth.delete_saml_connection,
)

0 comments on commit cbd2f8d

Please sign in to comment.