Added a bugfix in the backend
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
a1a719088d
commit
8e6a74d30c
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ def refresh():
|
|||
$ curl http://localhost:5000/api/refresh -X GET \
|
||||
-H "Authorization: Bearer <your_token>"
|
||||
"""
|
||||
old_token = request.get_data()
|
||||
old_token = flask.request.get_data()
|
||||
new_token = guard.refresh_jwt_token(old_token)
|
||||
ret = {'access_token': new_token}
|
||||
return ret, 200
|
||||
|
|
Loading…
Reference in a new issue