Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GlobusApp login, logout, and login_required #1041

Merged
merged 6 commits into from
Sep 6, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Feedback: list-form
derek-globus committed Sep 5, 2024

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 2c409e7ab983f880543a2a6ff36c239725b4d254
6 changes: 3 additions & 3 deletions src/globus_sdk/experimental/globus_app/app.py
Original file line number Diff line number Diff line change
@@ -237,9 +237,9 @@ def login(
Log an auth entity into the app, if needed, storing the resulting tokens.

A login flow will be performed if:
* ``auth_params`` are provided
* ``force`` is set to True
* ``self.login_required()`` evaluates to True
* ``auth_params`` are provided,
* ``force`` is set to True, or
* ``self.login_required()`` evaluates to True.

:param auth_params: An optional set of authorization parameters to establish
requirements and controls for the login flow.