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
7 changes: 0 additions & 7 deletions src/sentry/api/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,6 @@
)
from sentry.issues.endpoints.project_codeowners_details import ProjectCodeOwnersDetailsEndpoint
from sentry.issues.endpoints.project_codeowners_index import ProjectCodeOwnersEndpoint
from sentry.issues.endpoints.project_grouping_configs import ProjectGroupingConfigsEndpoint
from sentry.issues.endpoints.project_issues_resolved_in_release import (
ProjectIssuesResolvedInReleaseEndpoint,
)
Expand Down Expand Up @@ -3278,12 +3277,6 @@ def create_group_urls(name_prefix: str) -> list[URLPattern | URLResolver]:
ProjectRepoPathParsingEndpoint.as_view(),
name="sentry-api-0-project-repo-path-parsing",
),
# Grouping configs
re_path(
r"^(?P<organization_id_or_slug>[^/]+)/(?P<project_id_or_slug>[^/]+)/grouping-configs/$",
ProjectGroupingConfigsEndpoint.as_view(),
name="sentry-api-0-project-grouping-configs",
),
re_path(
r"^(?P<organization_id_or_slug>[^/]+)/(?P<project_id_or_slug>[^/]+)/profiling/profiles/(?P<profile_id>(?:\d+|[A-Fa-f0-9-]{32,36}))/$",
ProjectProfilingProfileEndpoint.as_view(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,6 @@
"DELETE"
},
"/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/stacktrace-link/": {"GET"},
"/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/grouping-configs/": {"GET"},
"/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/appstoreconnect/": {"POST"},
"/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/appstoreconnect/apps/": {
"POST"
Expand Down Expand Up @@ -822,8 +821,6 @@
"/api/0/doc-integrations/{doc_integration_id_or_slug}/avatar/": {"GET", "PUT"},
"/api/0/integration-features/": {"GET"},
"/api/0/issue-occurrence/": {"POST"},
"/api/0/grouping-configs/": {"GET"},
"/api/0/organizations/{organization_id_or_slug}/grouping-configs/": {"GET"},
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these two were removed in other PRs but don't seem to be cleaned up #104303 and #96856

"/api/0/builtin-symbol-sources/": {"GET"},
"/api/0/organizations/{organization_id_or_slug}/builtin-symbol-sources/": {"GET"},
"/api/0/wizard/": {"GET", "DELETE"},
Expand Down
2 changes: 0 additions & 2 deletions src/sentry/conf/api_pagination_allowlist_do_not_modify.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"GroupSimilarIssuesEmbeddingsEndpoint",
"GroupStatsEndpoint",
"GroupTagsEndpoint",
"GroupingConfigsEndpoint",
"IntegrationFeaturesEndpoint",
"InternalQueueTasksEndpoint",
"InternalStatsEndpoint",
Expand Down Expand Up @@ -78,7 +77,6 @@
"ProjectEnvironmentsEndpoint",
"ProjectFiltersEndpoint",
"ProjectGroupIndexEndpoint",
"ProjectGroupingConfigsEndpoint",
"ProjectIssuesResolvedInReleaseEndpoint",
"ProjectMemberIndexEndpoint",
"ProjectMonitorStatsEndpoint",
Expand Down
28 changes: 0 additions & 28 deletions src/sentry/issues/endpoints/project_grouping_configs.py

This file was deleted.

1 change: 0 additions & 1 deletion static/app/utils/api/knownSentryApiUrls.generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,6 @@ export type KnownSentryApiUrls =
| '/projects/$organizationIdOrSlug/$projectIdOrSlug/files/source-maps/'
| '/projects/$organizationIdOrSlug/$projectIdOrSlug/filters/'
| '/projects/$organizationIdOrSlug/$projectIdOrSlug/filters/$filterId/'
| '/projects/$organizationIdOrSlug/$projectIdOrSlug/grouping-configs/'
| '/projects/$organizationIdOrSlug/$projectIdOrSlug/groups/'
| '/projects/$organizationIdOrSlug/$projectIdOrSlug/groups/stats/'
| '/projects/$organizationIdOrSlug/$projectIdOrSlug/hooks/'
Expand Down
18 changes: 0 additions & 18 deletions tests/sentry/issues/endpoints/test_project_grouping_configs.py

This file was deleted.

Loading