Skip to content

Commit

Permalink
chore(issues): remove all of Organization Activity (#74587)
Browse files Browse the repository at this point in the history
This has been marked deprecated since March
#67315

All affected organizations have been
[notified](https://www.notion.so/sentry/Notice-of-Organization-Activity-Endpoint-Deprecation-4b4d3edb2c954669a0b1358570d)
back then.
  • Loading branch information
Bartek Ogryczak authored Jul 19, 2024
1 parent e5f878c commit 1676ad0
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 188 deletions.
6 changes: 0 additions & 6 deletions src/sentry/api/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@
from sentry.issues.endpoints import (
ActionableItemsEndpoint,
GroupEventsEndpoint,
OrganizationActivityEndpoint,
OrganizationGroupIndexEndpoint,
OrganizationGroupSearchViewsEndpoint,
OrganizationReleasePreviousCommitsEndpoint,
Expand Down Expand Up @@ -1328,11 +1327,6 @@ def create_group_urls(name_prefix: str) -> list[URLPattern | URLResolver]:
OrganizationAccessRequestDetailsEndpoint.as_view(),
name="sentry-api-0-organization-access-request-details",
),
re_path(
r"^(?P<organization_id_or_slug>[^\/]+)/activity/$",
OrganizationActivityEndpoint.as_view(),
name="sentry-api-0-organization-activity",
),
re_path(
r"^(?P<organization_id_or_slug>[^\/]+)/api-keys/$",
OrganizationApiKeyIndexEndpoint.as_view(),
Expand Down
2 changes: 0 additions & 2 deletions src/sentry/issues/endpoints/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from .actionable_items import ActionableItemsEndpoint
from .group_events import GroupEventsEndpoint
from .organization_activity import OrganizationActivityEndpoint
from .organization_group_index import OrganizationGroupIndexEndpoint
from .organization_group_search_views import OrganizationGroupSearchViewsEndpoint
from .organization_release_previous_commits import OrganizationReleasePreviousCommitsEndpoint
Expand All @@ -11,7 +10,6 @@
__all__ = (
"ActionableItemsEndpoint",
"GroupEventsEndpoint",
"OrganizationActivityEndpoint",
"OrganizationGroupIndexEndpoint",
"OrganizationGroupSearchViewsEndpoint",
"OrganizationReleasePreviousCommitsEndpoint",
Expand Down
104 changes: 0 additions & 104 deletions src/sentry/issues/endpoints/organization_activity.py

This file was deleted.

76 changes: 0 additions & 76 deletions tests/sentry/issues/endpoints/test_organization_activity.py

This file was deleted.

0 comments on commit 1676ad0

Please sign in to comment.