Skip to content

Commit

Permalink
docs(robot-server): Exclude /labwareOffsets endpoints from docs (#1…
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxColoring authored Jan 8, 2025
1 parent 0fa2cfc commit 5f869ea
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions robot-server/robot_server/labware_offsets/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"""
),
status_code=201,
include_in_schema=False, # todo(mm, 2025-01-08): Include for v8.4.0.
)
async def post_labware_offset( # noqa: D103
store: Annotated[LabwareOffsetStore, fastapi.Depends(get_labware_offset_store)],
Expand Down Expand Up @@ -72,6 +73,7 @@ async def post_labware_offset( # noqa: D103
" Filters are ANDed together."
" Results are returned in order from oldest to newest."
),
include_in_schema=False, # todo(mm, 2025-01-08): Include for v8.4.0.
)
async def get_labware_offsets( # noqa: D103
store: Annotated[LabwareOffsetStore, fastapi.Depends(get_labware_offset_store)],
Expand Down Expand Up @@ -163,6 +165,7 @@ async def get_labware_offsets( # noqa: D103
path="/labwareOffsets/{id}",
summary="Delete a single labware offset",
description="Delete a single labware offset. The deleted offset is returned.",
include_in_schema=False, # todo(mm, 2025-01-08): Include for v8.4.0.
)
async def delete_labware_offset( # noqa: D103
store: Annotated[LabwareOffsetStore, fastapi.Depends(get_labware_offset_store)],
Expand All @@ -185,6 +188,7 @@ async def delete_labware_offset( # noqa: D103
router.delete,
path="/labwareOffsets",
summary="Delete all labware offsets",
include_in_schema=False, # todo(mm, 2025-01-08): Include for v8.4.0.
)
async def delete_all_labware_offsets( # noqa: D103
store: Annotated[LabwareOffsetStore, fastapi.Depends(get_labware_offset_store)]
Expand Down

0 comments on commit 5f869ea

Please sign in to comment.