Skip to content

Commit 72f0782

Browse files
committed
fixup docstring
1 parent 1f7b127 commit 72f0782

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

reflex_okta_auth/state.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,14 @@ class OktaAuthState(rx.State):
3939
Attributes:
4040
access_token: The OAuth 2.0 access token stored in local storage.
4141
id_token: The OpenID Connect ID token stored in local storage.
42-
app_state: Random state parameter for CSRF protection.
43-
code_verifier: PKCE code verifier for secure authorization.
44-
redirect_to_url: URL to redirect to after successful authentication.
4542
error_message: Error message for authentication failures.
43+
is_iframed: Whether the app is running inside an iframe.
44+
from_popup: Whether the current page was opened as a popup.
45+
46+
_redirect_to_url: URL to redirect to after successful authentication.
47+
_app_state: Random state parameter for CSRF protection.
48+
_code_verifier: PKCE code verifier for secure authorization.
49+
_requested_scopes: Scopes requested during authentication.
4650
"""
4751

4852
access_token: str = rx.LocalStorage()

0 commit comments

Comments
 (0)