(self, request: Request, *args: Any, **kwargs: Any)
| 215 | return Response({"results": members, "next_cursor": next_cursor}) |
| 216 | |
| 217 | def destroy(self, request: Request, *args: Any, **kwargs: Any) -> Response: |
| 218 | segment = self.get_object() |
| 219 | author = AuthorData.from_request(request) |
| 220 | delete_segment(segment, author=author) |
| 221 | return Response(status=status.HTTP_204_NO_CONTENT) |
| 222 | |
| 223 | @extend_schema( |
| 224 | request=CloneSegmentSerializer, |
nothing calls this directly
no test coverage detected