Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix minor docstring error #10

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions flask_jwt_extended/jwt_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ def user_claims_loader(self, callback):

def user_identity_loader(self, callback):
"""
This sets the callback method for adding custom user claims to a JWT.
This sets the callback method for adding custom user identities to a JWT.

By default, no extra user claims will be added to the JWT.
By default, no extra user identities will be added to the JWT.

Callback must be a function that takes only one argument, which is the
identity of the JWT being created.
Expand Down