Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
from sentry.models.project import Project
from sentry.notifications.notification_action.grouptype import get_test_notification_event_data
from sentry.notifications.types import TEST_NOTIFICATION_ID
from sentry.workflow_engine.endpoints.organization_workflow_index import (
OrganizationWorkflowPermission,
)
from sentry.workflow_engine.endpoints.utils.test_fire_action import test_fire_action
from sentry.workflow_engine.endpoints.validators.base.action import BaseActionValidator
from sentry.workflow_engine.models import Action, Detector
Expand Down Expand Up @@ -45,6 +48,7 @@ class OrganizationTestFireActionsEndpoint(OrganizationEndpoint):
"POST": ApiPublishStatus.EXPERIMENTAL,
}
owner = ApiOwner.ECOSYSTEM
permission_classes = (OrganizationWorkflowPermission,)

@extend_schema(
operation_id="Test Fire Actions",
Expand Down
Loading