Skip to content

Commit

Permalink
chore(alerts): Remove org alert rule activations endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
ceorourke committed Jan 6, 2025
1 parent 22d79a3 commit 5bda3ed
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 162 deletions.
9 changes: 1 addition & 8 deletions src/sentry/api/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,7 @@
OrganizationFlagsWebHookSigningSecretEndpoint,
OrganizationFlagsWebHookSigningSecretsEndpoint,
)
from sentry.incidents.endpoints.organization_alert_rule_activations import (
OrganizationAlertRuleActivationsEndpoint,
)

from sentry.incidents.endpoints.organization_alert_rule_anomalies import (
OrganizationAlertRuleAnomaliesEndpoint,
)
Expand Down Expand Up @@ -1155,11 +1153,6 @@ def create_group_urls(name_prefix: str) -> list[URLPattern | URLResolver]:
OrganizationAlertRuleDetailsEndpoint.as_view(),
name="sentry-api-0-organization-alert-rule-details",
),
re_path(
r"^(?P<organization_id_or_slug>[^\/]+)/alert-rules/(?P<alert_rule_id>[^\/]+)/activations/$",
OrganizationAlertRuleActivationsEndpoint.as_view(),
name="sentry-api-0-organization-alert-rule-activations",
),
re_path(
r"^(?P<organization_id_or_slug>[^\/]+)/alert-rules/(?P<alert_rule_id>[^\/]+)/anomalies/$",
OrganizationAlertRuleAnomaliesEndpoint.as_view(),
Expand Down

This file was deleted.

This file was deleted.

0 comments on commit 5bda3ed

Please sign in to comment.