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
6 changes: 0 additions & 6 deletions src/sentry/api/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -2395,12 +2395,6 @@ def create_group_urls(name_prefix: str) -> list[URLPattern | URLResolver]:
BuiltinSymbolSourcesEndpoint.as_view(),
name="sentry-api-0-organization-builtin-symbol-sources",
),
# Grouping configs
re_path(
r"^(?P<organization_id_or_slug>[^/]+)/grouping-configs/$",
GroupingConfigsEndpoint.as_view(),
name="sentry-api-0-organization-grouping-configs",
),
# Unsubscribe from organization notifications
re_path(
r"^(?P<organization_id_or_slug>[^/]+)/unsubscribe/project/(?P<id>\d+)/$",
Expand Down
4 changes: 2 additions & 2 deletions tests/sentry/api/endpoints/test_grouping_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ def test_no_slug(self) -> None:


class GroupingConfigsWithSlugTest(APITestCase):
endpoint = "sentry-api-0-organization-grouping-configs"
endpoint = "sentry-api-0-grouping-configs"

def setUp(self) -> None:
super().setUp()
self.organization = self.create_organization(owner=self.user)
self.login_as(user=self.user)

def test_with_slug(self) -> None:
resp = self.get_response(self.organization.slug)
resp = self.get_response()
assert resp.status_code == 200

body = resp.data
Expand Down
Loading