You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
379 B
Python
12 lines
379 B
Python
from oauth2_provider.oauth2_validators import OAuth2Validator
|
|
|
|
|
|
class CustomOAuth2Validator(OAuth2Validator):
|
|
# Set `oidc_claim_scope = None` to ignore scopes that limit which claims to return,
|
|
# otherwise the OIDC standard scopes are used.
|
|
|
|
def get_additional_claims(self, request):
|
|
return {
|
|
"preferred_username": request.user.username
|
|
}
|