Skip to content

Commit

Permalink
exclude multi-entity association endpoint from api (#527)
Browse files Browse the repository at this point in the history
We're reworking this endpoint entirely, probably removing it from
SolrImplementation at some point.
So it doesn't make sense for it to show up in the swagger UI
  • Loading branch information
glass-ships authored Jan 3, 2024
1 parent 79e96b7 commit 90e8759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/monarch_py/api/association.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async def _get_associations(
return response


@router.get("/multi")
@router.get("/multi", include_in_schema=False)
async def _get_multi_entity_associations(
entity: Union[List[str], None] = Query(default=None),
counterpart_category: Union[List[str], None] = Query(default=None),
Expand Down

0 comments on commit 90e8759

Please sign in to comment.