Skip to content

Commit 8e46404

Browse files
ref(issues): Move group stats endpoint and tests to issues folder (#97317)
## Summary - Move `src/sentry/api/endpoints/group_stats.py` to `src/sentry/issues/endpoints/` - Move `tests/sentry/api/endpoints/test_group_stats.py` to `tests/sentry/issues/endpoints/` - Update import references in `src/sentry/api/urls.py` ## Test plan - [x] Verify endpoint file moved successfully - [x] Verify test file moved successfully - [x] Verify import paths updated correctly - [x] Pre-commit hooks pass Part of https://linear.app/getsentry/issue/RTC-1110/move-issues-endpoints-into-issues-app --------- Co-authored-by: getsantry[bot] <66042841+getsantry[bot]@users.noreply.github.com>
1 parent 29fcff2 commit 8e46404

File tree

3 files changed

+1
-1
lines changed

3 files changed

+1
-1
lines changed

src/sentry/api/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@
230230
)
231231
from sentry.issues.endpoints.browser_reporting_collector import BrowserReportingCollectorEndpoint
232232
from sentry.issues.endpoints.group_reprocessing import GroupReprocessingEndpoint
233+
from sentry.issues.endpoints.group_stats import GroupStatsEndpoint
233234
from sentry.issues.endpoints.organization_group_search_view_starred_order import (
234235
OrganizationGroupSearchViewStarredOrderEndpoint,
235236
)
@@ -503,7 +504,6 @@
503504
from .endpoints.group_current_release import GroupCurrentReleaseEndpoint
504505
from .endpoints.group_external_issue_details import GroupExternalIssueDetailsEndpoint
505506
from .endpoints.group_first_last_release import GroupFirstLastReleaseEndpoint
506-
from .endpoints.group_stats import GroupStatsEndpoint
507507
from .endpoints.group_tagkey_details import GroupTagKeyDetailsEndpoint
508508
from .endpoints.group_tagkey_values import GroupTagKeyValuesEndpoint
509509
from .endpoints.group_tags import GroupTagsEndpoint

0 commit comments

Comments
 (0)