MCPcopy
hub / github.com/opactorai/Claudable / getProjectService

Function getProjectService

lib/services/project-services.ts:37–43  ·  view source on GitHub ↗
(projectId: string, provider: string)

Source from the content-addressed store, hash-verified

35}
36
37export async function getProjectService(projectId: string, provider: string) {
38 const connection = await prisma.projectServiceConnection.findFirst({
39 where: { projectId, provider },
40 });
41
42 return connection ? deserializeServiceData(connection) : null;
43}
44
45export async function upsertProjectServiceConnection(
46 projectId: string,

Callers 5

triggerVercelDeploymentFunction · 0.90
pushProjectToGitHubFunction · 0.90
getProjectGitHubRepoFunction · 0.90
getProjectVercelInfoFunction · 0.90

Calls 1

deserializeServiceDataFunction · 0.85

Tested by

no test coverage detected