MCPcopy Index your code
hub / github.com/AutoForgeAI/autoforge / updateProjectSettings

Function updateProjectSettings

ui/src/lib/api.ts:104–112  ·  view source on GitHub ↗
(
  name: string,
  settings: ProjectSettingsUpdate
)

Source from the content-addressed store, hash-verified

102}
103
104export async function updateProjectSettings(
105 name: string,
106 settings: ProjectSettingsUpdate
107): Promise<ProjectDetail> {
108 return fetchJSON(`/projects/${encodeURIComponent(name)}/settings`, {
109 method: 'PATCH',
110 body: JSON.stringify(settings),
111 })
112}
113
114export interface ResetProjectResponse {
115 success: boolean

Callers

nothing calls this directly

Calls 1

fetchJSONFunction · 0.85

Tested by

no test coverage detected