Skip to content

Commit

Permalink
Fix history (#8322)
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondjacobson authored May 3, 2024
1 parent 0b33e68 commit ca2694a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/discovery-provider/src/api/v1/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -1046,8 +1046,8 @@ def _get(self, id, authed_user_id):
@full_ns.expect(track_history_parser)
@auth_middleware(track_history_parser)
@full_ns.marshal_with(history_response_full)
def get(self, id):
return self._get(id)
def get(self, id, authed_user_id=None):
return self._get(id, authed_user_id)


@ns.route(USER_HISTORY_TRACKS_ROUTE, doc=False)
Expand Down

0 comments on commit ca2694a

Please sign in to comment.