Skip to content

Commit 0d16c65

Browse files
replace partial with only
1 parent 9ebfa0b commit 0d16c65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/routes/auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ class Refresh(MethodView):
132132
"""Get new access token using your refresh token."""
133133

134134
@jwt_required(refresh=True)
135-
@bp.response(200, AuthOut(partial=("access_token",)))
135+
@bp.response(200, AuthOut(only=("access_token",)))
136136
def post(self):
137137
"""
138138
Get new access token using your refresh token

0 commit comments

Comments
 (0)