mirror of
https://github.com/suitenumerique/django-lasuite
synced 2026-04-25 17:15:14 +02:00
📝(oidc) fix misleading docstring in AuthorizationServerClient
The docstring referenced a `url_jwks` parameter that is not used by the AuthorizationServerClient constructor. It appears to have been copied from JWTAuthorizationServerClient. Update the docstring to reflect the actual behavior of the class.
This commit is contained in:
committed by
Lebaud Antoine
parent
1b6aeb51db
commit
1534cbffd1
@@ -24,6 +24,7 @@ and this project adheres to
|
||||
### Fixed
|
||||
|
||||
- 🐛(oidc) use correct session key for token expiration check #56
|
||||
- 📝(oidc) fix misleading docstring in AuthorizationServerClient #66
|
||||
|
||||
## [0.0.23] - 2026-01-14
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ class AuthorizationServerClient:
|
||||
_header_accept = "application/json"
|
||||
|
||||
def __init__(self):
|
||||
"""Require at a minimum url, url_jwks and url_introspection."""
|
||||
"""Require at a minimum url and url_introspection."""
|
||||
self.url = settings.OIDC_OP_URL
|
||||
self._verify_ssl = settings.OIDC_VERIFY_SSL
|
||||
self._timeout = settings.OIDC_TIMEOUT
|
||||
|
||||
Reference in New Issue
Block a user