MCPcopy
hub / github.com/Dokploy/dokploy / updateGitlab

Function updateGitlab

packages/server/src/services/gitlab.ts:66–78  ·  view source on GitHub ↗
(
	gitlabId: string,
	input: Partial<Gitlab>,
)

Source from the content-addressed store, hash-verified

64};
65
66export const updateGitlab = async (
67 gitlabId: string,
68 input: Partial<Gitlab>,
69) => {
70 return await db
71 .update(gitlab)
72 .set({
73 ...input,
74 })
75 .where(eq(gitlab.gitlabId, gitlabId))
76 .returning()
77 .then((response) => response[0]);
78};

Callers 3

refreshGitlabTokenFunction · 0.90
handlerFunction · 0.90
gitlab.tsFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected