Skip to content
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
23 changes: 0 additions & 23 deletions static/app/router/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -760,25 +760,6 @@ function buildRoutes(): RouteObject[] {
path: 'issue-tracking/',
redirectTo: '/settings/:orgId/:projectId/plugins/',
},
{
path: 'hooks/',
name: t('Service Hooks'),
component: make(() => import('sentry/views/settings/project/projectServiceHooks')),
},
{
path: 'hooks/new/',
name: t('Create Service Hook'),
component: make(
() => import('sentry/views/settings/project/projectCreateServiceHook')
),
},
{
path: 'hooks/:hookId/',
name: t('Service Hook Details'),
component: make(
() => import('sentry/views/settings/project/projectServiceHookDetails')
),
},
];
const projectSettingsRoutes: SentryRouteObject = {
path: 'projects/:projectId/',
Expand Down Expand Up @@ -2885,10 +2866,6 @@ function buildRoutes(): RouteObject[] {
path: 'filters/',
redirectTo: '/settings/:orgId/projects/:projectId/filters/',
},
{
path: 'hooks/',
redirectTo: '/settings/:orgId/projects/:projectId/hooks/',
},
{
path: 'keys/',
redirectTo: '/settings/:orgId/projects/:projectId/keys/',
Expand Down
12 changes: 0 additions & 12 deletions static/app/types/integrations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -553,20 +553,8 @@ export type AppOrProviderOrPlugin =
| PluginWithProjectList
| DocIntegration;

/**
* Webhooks and servicehooks
*/
export type WebhookEvent = 'issue' | 'error' | 'comment' | 'seer' | 'preprod_artifact';

export type ServiceHook = {
dateCreated: string;
events: string[];
id: string;
secret: string;
status: string;
url: string;
};

/**
* Codeowners and repository path mappings.
*/
Expand Down
27 changes: 0 additions & 27 deletions static/app/views/settings/project/projectCreateServiceHook.tsx

This file was deleted.

225 changes: 0 additions & 225 deletions static/app/views/settings/project/projectServiceHookDetails.tsx

This file was deleted.

Loading
Loading