We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eb6a0d commit 8b1037bCopy full SHA for 8b1037b
docs/add_custom_data_claims.rst
@@ -29,8 +29,8 @@ going to the data supplied by the ``additional_claims`` argument.
29
# claims to add to the JWT.
30
@jwt.additional_claims_loader
31
def add_claims_to_access_token(identity):
32
- return = {
33
- "aud": "some_audience",
34
- "foo": "bar",
35
- "upcase_name": identity.upper(),
36
- }
+ return {
+ "aud": "some_audience",
+ "foo": "bar",
+ "upcase_name": identity.upper(),
+ }
0 commit comments