Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ref(notifications): remove UserNotificationSettingsDetailsEndpoint #60302

Merged
merged 4 commits into from
Nov 21, 2023
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
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,6 @@ module = [
"sentry.api.endpoints.user_index",
"sentry.api.endpoints.user_notification_details",
"sentry.api.endpoints.user_notification_fine_tuning",
"sentry.api.endpoints.user_notification_settings_details",
"sentry.api.endpoints.user_permission_details",
"sentry.api.endpoints.user_permissions",
"sentry.api.endpoints.user_permissions_config",
Expand Down
89 changes: 0 additions & 89 deletions src/sentry/api/endpoints/user_notification_settings_details.py

This file was deleted.

6 changes: 0 additions & 6 deletions src/sentry/api/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,6 @@
from .endpoints.user_ips import UserIPsEndpoint
from .endpoints.user_notification_details import UserNotificationDetailsEndpoint
from .endpoints.user_notification_fine_tuning import UserNotificationFineTuningEndpoint
from .endpoints.user_notification_settings_details import UserNotificationSettingsDetailsEndpoint
from .endpoints.user_notification_settings_options import UserNotificationSettingsOptionsEndpoint
from .endpoints.user_notification_settings_options_detail import (
UserNotificationSettingsOptionsDetailEndpoint,
Expand Down Expand Up @@ -869,11 +868,6 @@
UserOrganizationsEndpoint.as_view(),
name="sentry-api-0-user-organizations",
),
re_path(
r"^(?P<user_id>[^\/]+)/notification-settings/$",
UserNotificationSettingsDetailsEndpoint.as_view(),
name="sentry-api-0-user-notification-settings",
),
re_path(
r"^(?P<user_id>[^\/]+)/notifications/$",
UserNotificationDetailsEndpoint.as_view(),
Expand Down
263 changes: 0 additions & 263 deletions tests/sentry/api/endpoints/test_user_notification_settings.py

This file was deleted.

Loading
Loading