Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/sentry/replays/endpoints/organization_replay_count.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ class OrganizationReplayCountEndpoint(OrganizationEventsEndpointBase):

@extend_schema(
examples=ReplayExamples.GET_REPLAY_COUNTS,
operation_id="Retrieve a Count of Replays for a Given Issue or Transaction",
operation_id="getOrganizationReplayCount",
summary="Retrieve a Count of Replays for a Given Issue or Transaction",
parameters=[
GlobalParams.ENVIRONMENT,
GlobalParams.ORG_ID_OR_SLUG,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,8 @@ class OrganizationReplayDetailsEndpoint(OrganizationReplayEndpoint):
}

@extend_schema(
operation_id="Retrieve a Replay Instance",
operation_id="getOrganizationReplay",
summary="Retrieve a Replay Instance",
parameters=[GlobalParams.ORG_ID_OR_SLUG, ReplayParams.REPLAY_ID, ReplayValidator],
responses={
200: inline_sentry_response_serializer("GetReplay", GetReplayResponse),
Expand Down
3 changes: 2 additions & 1 deletion src/sentry/replays/endpoints/organization_replay_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ class OrganizationReplayIndexEndpoint(OrganizationReplayEndpoint):
}

@extend_schema(
operation_id="List an Organization's Replays",
operation_id="listOrganizationReplays",
summary="List an Organization's Replays",
parameters=[GlobalParams.ORG_ID_OR_SLUG, ReplayValidator],
responses={
200: inline_sentry_response_serializer("ListReplays", _ListReplaysResponse),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ def get_replay_filter_params(self, request, organization):

@handled_snuba_exceptions
@extend_schema(
operation_id="List an Organization's Selectors",
operation_id="listOrganizationReplaySelectors",
summary="List an Organization's Selectors",
parameters=[
GlobalParams.ORG_ID_OR_SLUG,
GlobalParams.ENVIRONMENT,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ class ProjectReplayClicksIndexEndpoint(ProjectReplayEndpoint):
}

@extend_schema(
operation_id="List Clicked Nodes",
operation_id="listProjectReplayClicks",
summary="List Clicked Nodes",
parameters=[
CursorQueryParam,
GlobalParams.ORG_ID_OR_SLUG,
Expand Down
3 changes: 2 additions & 1 deletion src/sentry/replays/endpoints/project_replay_details.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ def get(self, request: Request, project: Project, replay_id: str) -> Response:
return Response({"data": replay_data[0]}, status=200)

@extend_schema(
operation_id="Delete a Replay Instance",
operation_id="deleteProjectReplay",
summary="Delete a Replay Instance",
parameters=[
GlobalParams.ORG_ID_OR_SLUG,
GlobalParams.PROJECT_ID_OR_SLUG,
Expand Down
9 changes: 6 additions & 3 deletions src/sentry/replays/endpoints/project_replay_jobs_delete.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ class ProjectReplayDeletionJobsIndexEndpoint(ProjectEndpoint):
permission_classes = (ReplayDeletionJobPermission,)

@extend_schema(
operation_id="List Replay Batch-Deletion Jobs",
operation_id="listProjectReplayDeletionJobs",
summary="List Replay Batch-Deletion Jobs",
parameters=[
GlobalParams.ORG_ID_OR_SLUG,
GlobalParams.PROJECT_ID_OR_SLUG,
Expand Down Expand Up @@ -132,7 +133,8 @@ def get(self, request: Request, project) -> Response[ReplayDeletionJobListRespon
)

@extend_schema(
operation_id="Create Replay Batch Deletion Job",
operation_id="createProjectReplayDeletionJob",
summary="Create Replay Batch Deletion Job",
parameters=[
GlobalParams.ORG_ID_OR_SLUG,
GlobalParams.PROJECT_ID_OR_SLUG,
Expand Down Expand Up @@ -203,7 +205,8 @@ class ProjectReplayDeletionJobDetailEndpoint(ProjectReplayEndpoint):
permission_classes = (ReplayDeletionJobPermission,)

@extend_schema(
operation_id="Retrieve a Replay Batch-Deletion Job",
operation_id="getProjectReplayDeletionJob",
summary="Retrieve a Replay Batch-Deletion Job",
parameters=[
GlobalParams.ORG_ID_OR_SLUG,
GlobalParams.PROJECT_ID_OR_SLUG,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ class ProjectReplayRecordingSegmentDetailsEndpoint(ProjectReplayEndpoint):
}

@extend_schema(
operation_id="Retrieve a Recording Segment",
operation_id="getProjectReplayRecordingSegment",
summary="Retrieve a Recording Segment",
parameters=[
GlobalParams.ORG_ID_OR_SLUG,
GlobalParams.PROJECT_ID_OR_SLUG,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ def __init__(self, **options) -> None:
super().__init__(**options)

@extend_schema(
operation_id="List Recording Segments",
operation_id="listProjectReplayRecordingSegments",
summary="List Recording Segments",
parameters=[
CursorQueryParam,
GlobalParams.ORG_ID_OR_SLUG,
Expand Down
3 changes: 2 additions & 1 deletion src/sentry/replays/endpoints/project_replay_viewed_by.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ class ProjectReplayViewedByEndpoint(ProjectReplayEndpoint):
permission_classes = (ProjectEventPermission,)

@extend_schema(
operation_id="List Users Who Have Viewed a Replay",
operation_id="listProjectReplayViewedBy",
summary="List Users Who Have Viewed a Replay",
parameters=[
GlobalParams.ORG_ID_OR_SLUG,
GlobalParams.PROJECT_ID_OR_SLUG,
Expand Down
Loading