Added a bugfix in the backend
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
cami 2021-07-23 00:52:36 +02:00 committed by Gitea
parent a1a719088d
commit 8e6a74d30c

View file

@ -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