File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2323
2424def verify_jwt_in_request ():
2525 """
26- Ensure that the requeste has a valid access token. This does not check the
26+ Ensure that the requester has a valid access token. This does not check the
2727 freshness of the access token. Raises an appropiate exception there is
2828 no token or if the token is invalid.
2929 """
@@ -57,7 +57,7 @@ def verify_jwt_in_request_optional():
5757
5858def verify_fresh_jwt_in_request ():
5959 """
60- Ensure that the requeste has a valid and fresh access token. Raises an
60+ Ensure that the requester has a valid and fresh access token. Raises an
6161 appropiate exception if there is no token, the token is invalid, or the
6262 token is not marked as fresh.
6363 """
@@ -78,7 +78,7 @@ def verify_fresh_jwt_in_request():
7878
7979def verify_jwt_refresh_token_in_request ():
8080 """
81- Ensure that the requeste has a valid refresh token. Raises an appropiate
81+ Ensure that the requester has a valid refresh token. Raises an appropiate
8282 exception if there is no token or the token is invalid.
8383 """
8484 if request .method not in config .exempt_methods :
You can’t perform that action at this time.
0 commit comments