diff --git a/dashboard/src/shared/api.tsx b/dashboard/src/shared/api.tsx index 258fec7000..a8f19ccc25 100644 --- a/dashboard/src/shared/api.tsx +++ b/dashboard/src/shared/api.tsx @@ -2061,6 +2061,13 @@ const getSlackIntegrations = baseApi<{}, { id: number }>( } ); +const getNeonIntegrations = baseApi<{}, { projectId: number }>( + "GET", + ({ projectId }) => { + return `/api/projects/${projectId}/neon-integrations`; + } +); + const getRevisions = baseApi< {}, { id: number; cluster_id: number; namespace: string; name: string } @@ -3887,6 +3894,7 @@ export default { getReleaseSteps, getRepoIntegrations, getSlackIntegrations, + getNeonIntegrations, getRepos, getRevisions, getTemplateInfo,