Skip to content

Commit ac1ed9c

Browse files
committed
Remove use_mrrt config value
1 parent 17c21be commit ac1ed9c

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/auth0_fastapi/auth/auth_client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ def __init__(
5050
transaction_store=transaction_store,
5151
state_store=state_store,
5252
pushed_authorization_requests=config.pushed_authorization_requests,
53-
use_mrrt=config.use_mrrt,
5453
authorization_params={
5554
"audience": config.audience,
5655
"redirect_uri": redirect_uri,

src/auth0_fastapi/config.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ class Auth0Config(BaseModel):
1515
audience: Optional[str] = Field(None, description="Target audience for tokens (if applicable)")
1616
authorization_params: Optional[dict[str, Any]] = Field(None, description="Additional parameters to include in the authorization request")
1717
pushed_authorization_requests: bool = Field(False, description="Whether to use pushed authorization requests")
18-
use_mrrt: bool = Field(False, description="Whether to use Multi-Resource Refresh Tokens (MRRT)")
1918
# Route-mounting flags with desired defaults
2019
mount_routes: bool = Field(True, description="Controls /auth/* routes: login, logout, callback, backchannel-logout")
2120
mount_connect_routes: bool = Field(False, description="Controls /auth/connect routes (account-linking)")

0 commit comments

Comments
 (0)